Skip to content
This repository has been archived by the owner on Apr 5, 2019. It is now read-only.

Commit

Permalink
update to version 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
deepu105 committed Feb 26, 2016
1 parent d3fbf4e commit 0c732d0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-ui-clock",
"version": "0.5.0",
"version": "0.5.1",
"main": [
"./dist/angular-clock.js",
"./dist/angular-clock.css"
Expand Down
2 changes: 1 addition & 1 deletion dist/angular-clock.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
convert to msec
add local time zone offset
get UTC time in msec*/
var utc = now.getTime() + (now.getTimezoneOffset() * 3600000);
var utc = now.getTime() + (now.getTimezoneOffset() * 60000);
// create new Date object for different city
// using supplied offset
var offsetNow = new Date(utc + (3600000 * o.gmtOffset));
Expand Down
Binary file modified dist/angular-clock.js.tar.gz
Binary file not shown.
4 changes: 2 additions & 2 deletions dist/angular-clock.min.js

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

2 changes: 1 addition & 1 deletion examples/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ <h1>Angular Clock Widget</h1>
<p>
<a class="btn btn-default btn-lg" href="/~https://github.com/deepu105/angular-clock"><i class="icon-github"></i>Code on Github</a>
<a class="btn btn-success btn-lg" href="../dist/angular-clock.js.tar.gz" download="angular-clock.js.tar.gz">
<i class="fa fa-download"></i> Download <small>(0.5.0)</small>
<i class="fa fa-download"></i> Download <small>(0.5.1)</small>
</a>
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "angular-clock",
"version": "0.5.0",
"version": "0.5.1",
"description": "An angular.js clock widget",
"main": "angular-clock.js",
"directories": {
Expand Down

0 comments on commit 0c732d0

Please sign in to comment.