Skip to content

Commit

Permalink
fixing jshint warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
beneidel committed Jan 25, 2013
1 parent 0d3fb84 commit 06e7f88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jlivetime",
"version": "0.0.11",
"version": "0.0.12",
"author": "Benjamin Eidelman <[email protected]>",
"description": "jQuery plugin for live timestamps, countdowns, time-ago, and timers",
"contributors": [
Expand Down
6 changes: 3 additions & 3 deletions src/jlivetime.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
(function($){

var lt = $.livetime = $.livetime || {};
lt.version = '0.0.11';
lt.version = '0.0.12';

lt.localTimeOffset = null;

Expand Down Expand Up @@ -453,7 +453,7 @@
};
case 'h':
return {
value: padLeft(date.getHours() > 12 ? date.getHours() - 12 :
value: padLeft(date.getHours() > 12 ? date.getHours() - 12 :
(date.getHours() === 0 ? 12 : date.getHours()), match[2].length)
};
case 'H':
Expand Down Expand Up @@ -559,7 +559,7 @@
return {
expression: format_expression,
nextRefreshMs: nextRefreshMs
}
};
};

lt.format = function(ts, timeDiff, duration, format){
Expand Down

0 comments on commit 06e7f88

Please sign in to comment.