Skip to content

Commit 7c08510

Browse files
committed
Change JSDoc template to docdash, rename doc to docs
1 parent ef6ad3e commit 7c08510

File tree

104 files changed

+9670
-149971
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+9670
-149971
lines changed

Gruntfile.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,8 @@ module.exports = function(grunt) {
4343

4444
jsdoc: {
4545
dist: {
46-
src: ["chronoman.js", "README.md"],
4746
options: {
48-
destination: "doc",
49-
template: "node_modules/ink-docstrap/template",
50-
configure: "jsdoc-conf.json"
47+
configure: "jsdoc-conf.js"
5148
}
5249
}
5350
},

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# chronoman
22

3+
[![NPM version](https://badge.fury.io/js/chronoman.png)](http://badge.fury.io/js/chronoman)
4+
[![Build Status](https://secure.travis-ci.org/gamtiq/chronoman.png?branch=master)](http://travis-ci.org/gamtiq/chronoman)
5+
[![Built with Grunt](https://gruntjs.com/cdn/builtwith.png)](http://gruntjs.com/)
6+
37
Utility class to simplify use of timers created by `setTimeout`.
48

59
### Features
@@ -29,17 +33,13 @@ var timer = new Timer({
2933
timer.stop();
3034
```
3135

32-
[![NPM version](https://badge.fury.io/js/chronoman.png)](http://badge.fury.io/js/chronoman)
33-
[![Build Status](https://secure.travis-ci.org/gamtiq/chronoman.png?branch=master)](http://travis-ci.org/gamtiq/chronoman)
34-
[![Built with Grunt](https://gruntjs.com/cdn/builtwith.png)](http://gruntjs.com/)
35-
3636
## Installation
3737

3838
### Node
3939

4040
npm install chronoman
4141

42-
### [Bower](http://bower.io)
42+
### [Bower](https://bower.io)
4343

4444
bower install chronoman
4545

@@ -98,7 +98,7 @@ var tmrOne = new Timer({
9898
});
9999

100100
var tmrTwo = new Timer();
101-
tmrTwo.setPeriod([2000, , {start: 1000, end: 1500}])
101+
tmrTwo.setPeriod([2000, {start: 1000, end: 1500}])
102102
.setRepeatQty(9)
103103
.setPassToAction(true)
104104
.setAction({
@@ -127,7 +127,7 @@ See `test/chronoman.js` for additional examples.
127127

128128
## API
129129

130-
See `doc` folder.
130+
See [`docs`](https://gamtiq.github.io/chronoman/).
131131

132132
## Related projects
133133

0 commit comments

Comments
 (0)