Skip to content
This repository was archived by the owner on Nov 25, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"presets": ["es2015", "stage-2"],
"plugins": ["babel-plugin-add-module-exports", "transform-object-assign"]
}
9 changes: 9 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
root = true

[*]
indent_style = tab
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true
4 changes: 4 additions & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/lib
/example
/node_modules
/docs
28 changes: 28 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
module.exports = {
"parser": "babel-eslint",
"extends": ["google"],
"rules": {
"max-len": [2, 120, 2],
"indent": [2, "tab",{
"SwitchCase": 1
}],
"camelcase": [2, {
"properties": "never"
}],
"require-jsdoc": 0,
"arrow-parens": 0,
"no-invalid-this": 0,
"no-debugger": 1
},
"env": {
"browser": true,
"mocha": true
},
"globals": {
"VERSION": true,
"LIBRARY_NAME": true,
"IS_LOC": true,
"IS_DEV": true,
"IS_PROD": true
}
};
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
.editorconfig
config.codekit
.idea
node_modules
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Thanks to everyone who issued pull requests.
[![](http://i.imgur.com/kHV1hbh.png)](http://stanko.github.io/html-canvas-video-player)

### Changelog
* Rewrote to ES6+ and added universal module
* Few minor tweaks (thanks to pull requests)
* Added audio support and moved timeline to the main JS file
* Initial release
87 changes: 0 additions & 87 deletions demo/demo.css

This file was deleted.

1 change: 0 additions & 1 deletion demo/demo.js

This file was deleted.

Loading