Skip to content

Commit f520d86

Browse files
Portugal, MarceloPortugal, Marcelo
authored andcommitted
v4.0.1
1 parent 3d5cdb5 commit f520d86

File tree

10 files changed

+77
-21
lines changed

10 files changed

+77
-21
lines changed

4.0.1/ui-grid.eot

10.1 KB
Binary file not shown.

4.0.1/ui-grid.svg

Lines changed: 56 additions & 0 deletions
Loading

4.0.1/ui-grid.ttf

9.92 KB
Binary file not shown.

4.0.1/ui-grid.woff

5.59 KB
Binary file not shown.

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "angular-ui-grid",
33
"description": "A data grid for Angular",
44
"main": [
5-
"4.0.0",
5+
"4.0.1",
66
"less",
77
"ui-grid.css",
88
"ui-grid.eot",

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
"data grid"
2828
],
2929
"license": "MIT",
30-
"version": "4.0.0",
30+
"version": "4.0.1",
3131
"files": [
32-
"4.0.0",
32+
"4.0.1",
3333
"less",
3434
"ui-grid.css",
3535
"ui-grid.eot",

ui-grid.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.0.0 - 2016-12-09
2+
* ui-grid - v4.0.1 - 2016-12-15
33
* Copyright (c) 2016 ; License: MIT
44
*/
55
#ui-grid-twbs #ui-grid-twbs .form-horizontal .form-group:before,

ui-grid.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* ui-grid - v4.0.0 - 2016-12-09
2+
* ui-grid - v4.0.1 - 2016-12-15
33
* Copyright (c) 2016 ; License: MIT
44
*/
55

@@ -3505,7 +3505,7 @@ function uiGridDirective($compile, $templateCache, $timeout, $window, gridUtil,
35053505
sizeChecks++;
35063506
}
35073507
else {
3508-
$timeout(init, 0, false);
3508+
$timeout(init);
35093509
}
35103510
}
35113511

@@ -5962,13 +5962,13 @@ angular.module('ui.grid')
59625962
}
59635963

59645964
p.resolve();
5965-
}, 0, false);
5965+
});
59665966
}
59675967
else {
59685968
// Timeout still needs to be here to trigger digest after styles have been rebuilt
59695969
$timeout(function() {
59705970
p.resolve();
5971-
}, 0, false);
5971+
});
59725972
}
59735973

59745974
return p.promise;
@@ -11339,7 +11339,7 @@ module.service('gridUtil', ['$log', '$window', '$document', '$http', '$templateC
1133911339
} else {
1134011340
s.logWarn('[focus.byId] Element id ' + elementID + ' was not found.');
1134111341
}
11342-
}, 0, false);
11342+
});
1134311343
this.queue.push(promise);
1134411344
return promise;
1134511345
},
@@ -11364,7 +11364,7 @@ module.service('gridUtil', ['$log', '$window', '$document', '$http', '$templateC
1136411364
if (element){
1136511365
element[0].focus();
1136611366
}
11367-
}, 0, false);
11367+
});
1136811368
this.queue.push(promise);
1136911369
return promise;
1137011370
},
@@ -11394,8 +11394,8 @@ module.service('gridUtil', ['$log', '$window', '$document', '$http', '$templateC
1139411394
};
1139511395
this._purgeQueue();
1139611396
if (aSync){ //Do this asynchronysly
11397-
var promise = $timeout(focusBySelector, 0, false);
11398-
this.queue.push($timeout(focusBySelector), 0, false);
11397+
var promise = $timeout(focusBySelector);
11398+
this.queue.push($timeout(focusBySelector));
1139911399
return promise;
1140011400
} else {
1140111401
return focusBySelector();

ui-grid.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui-grid.min.js

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

0 commit comments

Comments
 (0)