Skip to content

Commit 74ec9a9

Browse files
committed
3.0.0-beta.11 release
1 parent bd42be3 commit 74ec9a9

35 files changed

+144
-83
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# Change Log
44

5+
# [v3.0.0-beta.11](https://github.com/framework7io/framework7/compare/v3.0.0-beta.10...v3.0.0-beta.11) - June 19, 2018
6+
* Core
7+
* Fix touch ripple issues that happen from time to time in Edge
8+
* Fix minor push state issues in Edge
9+
* Device util now has additional detections props: `windowsPhone`, `windows`, `macos`, `ie`, `edge`
10+
511
# [v3.0.0-beta.10](https://github.com/framework7io/framework7/compare/v3.0.0-beta.9...v3.0.0-beta.10) - June 15, 2018
612
* Core
713
* All new Gauge component with responsive SVG gauges

packages/core/components/touch-ripple/touch-ripple-class.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ export default class TouchRipple {
2929
}
3030
onRemove() {
3131
let ripple = this;
32-
ripple.$rippleWaveEl.remove();
32+
if (ripple.$rippleWaveEl) {
33+
ripple.$rippleWaveEl.remove();
34+
}
3335
Object.keys(ripple).forEach((key) => {
3436
ripple[key] = null;
3537
delete ripple[key];

packages/core/css/framework7.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.0.0-beta.10
2+
* Framework7 3.0.0-beta.11
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: June 15, 2018
10+
* Released on: June 19, 2018
1111
*/
1212
html,
1313
body,

packages/core/css/framework7.ios.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.0.0-beta.10
2+
* Framework7 3.0.0-beta.11
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: June 15, 2018
10+
* Released on: June 19, 2018
1111
*/
1212
html,
1313
body,

packages/core/css/framework7.ios.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/css/framework7.md.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.0.0-beta.10
2+
* Framework7 3.0.0-beta.11
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: June 15, 2018
10+
* Released on: June 19, 2018
1111
*/
1212
html,
1313
body,

packages/core/css/framework7.md.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/css/framework7.min.css

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/css/framework7.rtl.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.0.0-beta.10
2+
* Framework7 3.0.0-beta.11
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: June 15, 2018
10+
* Released on: June 19, 2018
1111
*/
1212
html {
1313
direction: rtl;

packages/core/css/framework7.rtl.ios.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 3.0.0-beta.10
2+
* Framework7 3.0.0-beta.11
33
* Full featured mobile HTML framework for building iOS & Android apps
44
* http://framework7.io/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: June 15, 2018
10+
* Released on: June 19, 2018
1111
*/
1212
html {
1313
direction: rtl;

0 commit comments

Comments
 (0)