Skip to content

Commit

Permalink
Bugfix: work as a global
Browse files Browse the repository at this point in the history
  • Loading branch information
ejb committed Nov 23, 2016
1 parent 12429c3 commit 0954b9c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ A lightweight JavaScript library that creates customisable progress bars for HTM

## Changelog

### v1.0.1

- Bugfix: work as a global

### v1.0.0

- Support for common module systems
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "progressor.js",
"description": "Lightweight, customisable progress bars for HTML5 video & audio",
"version": "1.0.0",
"version": "1.0.1",
"homepage": "https://github.com/ejb/progressor.js",
"author": "Elliot Bentley <[email protected]> (http://ejb.github.io)",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion progressor.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
if (typeof module != 'undefined') module.exports = definition();
else if (typeof define == 'function' && typeof define.amd == 'object') define(definition);
else this[name] = definition();
}('progressor', function() {
}('Progressor', function() {
function Progressor( options ){
this._media = options.media;
this._bar = options.bar;
Expand Down
2 changes: 1 addition & 1 deletion progressor.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0954b9c

Please sign in to comment.