Skip to content

Commit

Permalink
Support set initial index and scroll to index.
Browse files Browse the repository at this point in the history
  • Loading branch information
tangbc committed Jul 1, 2017
1 parent 5691980 commit b7f244d
Show file tree
Hide file tree
Showing 12 changed files with 807 additions and 216 deletions.
20 changes: 20 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"extends": "standard",
"env": {
"browser": true,
"amd": true
},
"parserOptions": {
"ecmaVersion": 5,
"sourceType": "module"
},
"rules": {
"indent": ["error", 4],
// allow paren-less arrow functions
"arrow-parens": 0,
// allow async-await
"generator-star-spacing": 0,
// disallow trailing whitespace at the end of lines
"no-trailing-spaces": [0, { "skipBlankLines": true }]
}
}
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
dev
node_modules
npm-debug.log
examples/build/*.map
examples/**/*.map
247 changes: 177 additions & 70 deletions examples/build/finite.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion examples/build/finite.js.map

Large diffs are not rendered by default.

Loading

0 comments on commit b7f244d

Please sign in to comment.