├── .gitignore ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── Rakefile ├── VERSION ├── css └── lectric.css ├── examples ├── autoplay.html ├── images │ └── scrubber.png ├── scrubber.html ├── simple.html └── thin-frames.html ├── js └── lectric.js └── tests ├── index.html ├── lectric.js └── qunit ├── qunit.css └── qunit.js /.gitignore: -------------------------------------------------------------------------------- 1 | js/*.min.js 2 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/Rakefile -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 0.4.5 2 | -------------------------------------------------------------------------------- /css/lectric.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/css/lectric.css -------------------------------------------------------------------------------- /examples/autoplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/examples/autoplay.html -------------------------------------------------------------------------------- /examples/images/scrubber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/examples/images/scrubber.png -------------------------------------------------------------------------------- /examples/scrubber.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/examples/scrubber.html -------------------------------------------------------------------------------- /examples/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/examples/simple.html -------------------------------------------------------------------------------- /examples/thin-frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/examples/thin-frames.html -------------------------------------------------------------------------------- /js/lectric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/js/lectric.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/lectric.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/tests/lectric.js -------------------------------------------------------------------------------- /tests/qunit/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/tests/qunit/qunit.css -------------------------------------------------------------------------------- /tests/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/brettbuddin/lectric/HEAD/tests/qunit/qunit.js --------------------------------------------------------------------------------