Skip to content

Commit e98b62d

Browse files
committed
v1.1.0
1 parent 68952fa commit e98b62d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

addon/services/clock.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ import { bool } from '@ember/object/computed';
66
import { run } from '@ember/runloop';
77
import Service from '@ember/service';
88

9-
109
/**
1110
## ClockService
1211
@@ -122,7 +121,7 @@ export default Service.extend({
122121
*/
123122
tick() {
124123
this.setTime();
125-
if(this.get('disabled')) {
124+
if (this.get('disabled')) {
126125
return;
127126
}
128127
this.set('nextTick', run.later(this, this.tick, 1000));

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ember-clock",
3-
"version": "1.0.3",
3+
"version": "1.1.0",
44
"description": "Clock service for Ember",
55
"keywords": [
66
"ember-addon",

0 commit comments

Comments
 (0)