Skip to content

Commit

Permalink
Updated distributables to version 2.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jylauril committed May 22, 2013
1 parent 88eacc8 commit 9e3db0f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build/jquery.runner-min.js

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

12 changes: 8 additions & 4 deletions build/jquery.runner.js
@@ -1,13 +1,13 @@
/*!
* jQuery-runner - v2.1.2 - 2013-03-22
* jQuery-runner - v2.1.3 - 2013-05-22
* https://github.com/jylauril/jquery-runner/
* Copyright (c) 2013 Jyrki Laurila <https://github.com/jylauril>
*/
(function() {
var Runner, formatTime, meta, pad, runners, uid, _uid;

meta = {
version: "2.1.2",
version: "2.1.3",
name: "jQuery-runner"
};

Expand Down Expand Up @@ -256,12 +256,16 @@
runner.reset(options);
}
break;
case 'lap':
if (runner) {
return runner.lap();
}
break;
case 'start':
case 'stop':
case 'toggle':
case 'lap':
if (runner) {
runner[method]();
return runner[method]();
}
break;
case 'version':
Expand Down

0 comments on commit 9e3db0f

Please sign in to comment.