Skip to content

Commit b7f244d

Browse files
committed
Support set initial index and scroll to index.
1 parent 5691980 commit b7f244d

File tree

12 files changed

+807
-216
lines changed

12 files changed

+807
-216
lines changed

.eslintrc.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"extends": "standard",
3+
"env": {
4+
"browser": true,
5+
"amd": true
6+
},
7+
"parserOptions": {
8+
"ecmaVersion": 5,
9+
"sourceType": "module"
10+
},
11+
"rules": {
12+
"indent": ["error", 4],
13+
// allow paren-less arrow functions
14+
"arrow-parens": 0,
15+
// allow async-await
16+
"generator-star-spacing": 0,
17+
// disallow trailing whitespace at the end of lines
18+
"no-trailing-spaces": [0, { "skipBlankLines": true }]
19+
}
20+
}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
dev
22
node_modules
33
npm-debug.log
4-
examples/build/*.map
4+
examples/**/*.map

examples/build/finite.js

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

examples/build/finite.js.map

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)