Skip to content

Commit 450ba3a

Browse files
committed
1.5.1 distributives
1 parent 744de70 commit 450ba3a

File tree

9 files changed

+53
-152
lines changed

9 files changed

+53
-152
lines changed

direct/grid/grid.css

Lines changed: 0 additions & 6 deletions
This file was deleted.

direct/grid/grid.html

Lines changed: 0 additions & 64 deletions
This file was deleted.

direct/grid/grid.js

Lines changed: 0 additions & 35 deletions
This file was deleted.

dist/ui-scroll-grid.js

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
/*!
2-
* angular-ui-scroll
3-
* https://github.com/angular-ui/ui-scroll.git
4-
* Version: 1.5.0 -- 2016-06-09T21:24:24.010Z
5-
* License: MIT
6-
*/
7-
8-
9-
(function () {
1+
/*!
2+
* angular-ui-scroll
3+
* https://github.com/angular-ui/ui-scroll.git
4+
* Version: 1.5.1 -- 2016-06-27T18:18:39.277Z
5+
* License: MIT
6+
*/
7+
8+
9+
(function () {
1010
'use strict';
1111

1212
angular.module('ui.scroll.grid', []).directive('uiScrollTh', ['$log', '$timeout', function (console, $timeout) {
@@ -96,7 +96,7 @@ angular.module('ui.scroll.grid', []).directive('uiScrollTh', ['$log', '$timeout'
9696
var _this2 = this;
9797

9898
if (insidePoint(header, x, y)) return this;
99-
var result = void 0;
99+
var result = undefined;
100100
controller.forEachRow(function (row) {
101101
if (insidePoint(row[_this2.id], x, y)) result = _this2;
102102
});
@@ -223,7 +223,7 @@ angular.module('ui.scroll.grid', []).directive('uiScrollTh', ['$log', '$timeout'
223223
if (index < 0 || index > columns.length) return; // throw an error?
224224

225225
var mapTo = selected.mapTo,
226-
next = void 0;
226+
next = undefined;
227227
index -= mapTo < index ? 1 : 0;
228228

229229
columns.forEach(function (c) {

dist/ui-scroll-grid.min.js

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

dist/ui-scroll-jqlite.js

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
/*!
2-
* angular-ui-scroll
3-
* https://github.com/angular-ui/ui-scroll.git
4-
* Version: 1.5.0 -- 2016-06-09T21:24:24.010Z
5-
* License: MIT
6-
*/
7-
8-
9-
(function () {
1+
/*!
2+
* angular-ui-scroll
3+
* https://github.com/angular-ui/ui-scroll.git
4+
* Version: 1.5.1 -- 2016-06-27T18:18:39.277Z
5+
* License: MIT
6+
*/
7+
8+
9+
(function () {
1010
'use strict';
1111

1212
var _slicedToArray = function () { function sliceIterator(arr, i) { var _arr = []; var _n = true; var _d = false; var _e = undefined; try { for (var _i = arr[Symbol.iterator](), _s; !(_n = (_s = _i.next()).done); _n = true) { _arr.push(_s.value); if (i && _arr.length === i) break; } } catch (err) { _d = true; _e = err; } finally { try { if (!_n && _i['return']) _i['return'](); } finally { if (_d) throw _e; } } return _arr; } return function (arr, i) { if (Array.isArray(arr)) { return arr; } else if (Symbol.iterator in Object(arr)) { return sliceIterator(arr, i); } else { throw new TypeError('Invalid attempt to destructure non-iterable instance'); } }; }();
@@ -71,11 +71,11 @@ angular.module('ui.scroll.jqlite', ['ui.scroll']).service('jqLiteExtras', ['$log
7171
return elem.currentStyle;
7272
};
7373
convertToPx = function convertToPx(elem, value) {
74-
var left = void 0,
75-
result = void 0,
76-
rs = void 0,
77-
rsLeft = void 0,
78-
style = void 0;
74+
var left = undefined,
75+
result = undefined,
76+
rs = undefined,
77+
rsLeft = undefined,
78+
style = undefined;
7979
var core_pnum = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source;
8080
var rnumnonpx = new RegExp('^(' + core_pnum + ')(?!px)[a-z%]+$', 'i');
8181

@@ -103,18 +103,18 @@ angular.module('ui.scroll.jqlite', ['ui.scroll']).service('jqLiteExtras', ['$log
103103
}
104104

105105
function getMeasurements(elem, measure) {
106-
var base = void 0,
107-
borderA = void 0,
108-
borderB = void 0,
109-
computedMarginA = void 0,
110-
computedMarginB = void 0,
111-
computedStyle = void 0,
112-
dirA = void 0,
113-
dirB = void 0,
114-
marginA = void 0,
115-
marginB = void 0,
116-
paddingA = void 0,
117-
paddingB = void 0;
106+
var base = undefined,
107+
borderA = undefined,
108+
borderB = undefined,
109+
computedMarginA = undefined,
110+
computedMarginB = undefined,
111+
computedStyle = undefined,
112+
dirA = undefined,
113+
dirB = undefined,
114+
marginA = undefined,
115+
marginB = undefined,
116+
paddingA = undefined,
117+
paddingB = undefined;
118118

119119
if (isWindow(elem)) {
120120
base = document.documentElement[{ height: 'clientHeight', width: 'clientWidth' }[measure]];
@@ -163,8 +163,8 @@ angular.module('ui.scroll.jqlite', ['ui.scroll']).service('jqLiteExtras', ['$log
163163
}
164164

165165
function getWidthHeight(elem, direction, measure) {
166-
var computedStyle = void 0,
167-
result = void 0;
166+
var computedStyle = undefined,
167+
result = undefined;
168168

169169
var measurements = getMeasurements(elem, direction);
170170

@@ -238,8 +238,8 @@ angular.module('ui.scroll.jqlite', ['ui.scroll']).service('jqLiteExtras', ['$log
238238
The offset setter method is not implemented
239239
*/
240240
offset: function offset(value) {
241-
var docElem = void 0,
242-
win = void 0;
241+
var docElem = undefined,
242+
win = undefined;
243243
var self = this;
244244
var box = {
245245
top: 0,

dist/ui-scroll-jqlite.min.js

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

0 commit comments

Comments
 (0)