Skip to content

Commit 2ddabbd

Browse files
chore(all): prepare release 1.0.0-rc2
1 parent db54045 commit 2ddabbd

11 files changed

+11
-11
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-ui-virtualization",
3-
"version": "1.0.0-beta.7",
3+
"version": "1.0.0-rc2",
44
"description": "A plugin that provides a virtualized repeater and other virtualization services.",
55
"keywords": [
66
"aurelia",

dist/amd/aurelia-ui-virtualization.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ define(['exports', 'aurelia-binding', 'aurelia-templating', 'aurelia-templating-
5959

6060
var doc = document;
6161
var htmlElement = doc.documentElement;
62-
var $raf = requestAnimationFrame;
62+
var $raf = requestAnimationFrame.bind(window);
6363

6464
var getScrollerElement = function (element) {
6565
var current = element.parentNode;

dist/commonjs/aurelia-ui-virtualization.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ var $isNaN = isNaN;
6767

6868
var doc = document;
6969
var htmlElement = doc.documentElement;
70-
var $raf = requestAnimationFrame;
70+
var $raf = requestAnimationFrame.bind(window);
7171

7272
var getScrollerElement = function (element) {
7373
var current = element.parentNode;

dist/es2015/aurelia-ui-virtualization.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const $isNaN = isNaN;
3434

3535
const doc = document;
3636
const htmlElement = doc.documentElement;
37-
const $raf = requestAnimationFrame;
37+
const $raf = requestAnimationFrame.bind(window);
3838

3939
const getScrollerElement = (element) => {
4040
let current = element.parentNode;

dist/es2017/aurelia-ui-virtualization.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ const $isNaN = isNaN;
3434

3535
const doc = document;
3636
const htmlElement = doc.documentElement;
37-
const $raf = requestAnimationFrame;
37+
const $raf = requestAnimationFrame.bind(window);
3838

3939
const getScrollerElement = (element) => {
4040
let current = element.parentNode;

dist/native-modules/aurelia-ui-virtualization.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ var $isNaN = isNaN;
6363

6464
var doc = document;
6565
var htmlElement = doc.documentElement;
66-
var $raf = requestAnimationFrame;
66+
var $raf = requestAnimationFrame.bind(window);
6767

6868
var getScrollerElement = function (element) {
6969
var current = element.parentNode;

dist/system/aurelia-ui-virtualization.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ System.register(['aurelia-binding', 'aurelia-templating', 'aurelia-templating-re
9191

9292
var doc = document;
9393
var htmlElement = doc.documentElement;
94-
var $raf = requestAnimationFrame;
94+
var $raf = requestAnimationFrame.bind(window);
9595

9696
var getScrollerElement = function (element) {
9797
var current = element.parentNode;

dist/umd-es2015/aurelia-ui-virtualization.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434

3535
const doc = document;
3636
const htmlElement = doc.documentElement;
37-
const $raf = requestAnimationFrame;
37+
const $raf = requestAnimationFrame.bind(window);
3838

3939
const getScrollerElement = (element) => {
4040
let current = element.parentNode;

dist/umd/aurelia-ui-virtualization.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363

6464
var doc = document;
6565
var htmlElement = doc.documentElement;
66-
var $raf = requestAnimationFrame;
66+
var $raf = requestAnimationFrame.bind(window);
6767

6868
var getScrollerElement = function (element) {
6969
var current = element.parentNode;

package-lock.json

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

0 commit comments

Comments
 (0)