Skip to content

Commit

Permalink
upd 4.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
olton committed Sep 22, 2019
1 parent 9cab6cc commit 85dd6e7
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 9 deletions.
6 changes: 4 additions & 2 deletions build/js/metro.js
Original file line number Diff line number Diff line change
Expand Up @@ -3596,8 +3596,8 @@ var isTouch = (('ontouchstart' in window) || (navigator["MaxTouchPoints"] > 0) |
var Metro = {

version: "4.3.0",
compileTime: "22/09/2019 20:47:51",
buildNumber: "736",
compileTime: "22/09/2019 21:20:12",
buildNumber: "737",
isTouchable: isTouch,
fullScreenEnabled: document.fullscreenEnabled,
sheet: null,
Expand Down Expand Up @@ -11949,6 +11949,8 @@ var Counter = {
var o = this.options;
var i;

this.numbers = [];

for (i = 0; i <= o.value; i += o.step ) {
this.numbers.push(i);
}
Expand Down
2 changes: 1 addition & 1 deletion build/js/metro.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/js/metro.min.js.map

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions docs/metro/js/metro.js
Original file line number Diff line number Diff line change
Expand Up @@ -3596,8 +3596,8 @@ var isTouch = (('ontouchstart' in window) || (navigator["MaxTouchPoints"] > 0) |
var Metro = {

version: "4.3.0",
compileTime: "22/09/2019 20:47:51",
buildNumber: "736",
compileTime: "22/09/2019 21:20:12",
buildNumber: "737",
isTouchable: isTouch,
fullScreenEnabled: document.fullscreenEnabled,
sheet: null,
Expand Down Expand Up @@ -11949,6 +11949,8 @@ var Counter = {
var o = this.options;
var i;

this.numbers = [];

for (i = 0; i <= o.value; i += o.step ) {
this.numbers.push(i);
}
Expand Down
2 changes: 1 addition & 1 deletion docs/metro/js/metro.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/metro/js/metro.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"author": "Sergey Pimenov",
"name": "metro4",
"version": "4.3.0",
"build": "737",
"build": "738",
"version_suffix": "",
"description": "The front-end framework for Build responsive, mobile-first projects on the web with the first front-end component library in Metro Style",
"keywords": [
Expand Down
2 changes: 2 additions & 0 deletions source/components/counter/counter.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ var Counter = {
var o = this.options;
var i;

this.numbers = [];

for (i = 0; i <= o.value; i += o.step ) {
this.numbers.push(i);
}
Expand Down

0 comments on commit 85dd6e7

Please sign in to comment.