Skip to content

Commit 83ce147

Browse files
committed
Fixed a bug with linking to mixings in docs, and moved markdox to dev deps
1 parent 538b86d commit 83ce147

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

docs/markdox.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ var options = {
117117
javadoc.mixes = getTags(javadoc.raw.tags, 'mixes').map(function (mix) {
118118
return {
119119
text: mix.string,
120-
link: (mix.string.indexOf('www') !== -1 || mix.string.indexOf('http') !== -1) ? mix.string: '#API-Reference-' + mix.string
120+
link: (mix.string.indexOf('www') !== -1 || mix.string.indexOf('http') !== -1) ? mix.string: 'API-Reference-' + mix.string
121121
}
122122
})
123123

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@
5252
"sql": "~0.35.0",
5353
"circular-json": "~0.1.5",
5454
"bluebird": "~0.11.5",
55-
"node-uuid": "~1.4.1",
56-
"markdox": "0.1.4"
55+
"node-uuid": "~1.4.1"
5756
},
5857
"devDependencies": {
5958
"sqlite3": "~2.1.12",
@@ -70,7 +69,8 @@
7069
"istanbul": "~0.1.45",
7170
"coveralls": "~2.7.1",
7271
"async": "~0.2.10",
73-
"coffee-script": "~1.7.1"
72+
"coffee-script": "~1.7.1",
73+
"markdox": "0.1.4"
7474
},
7575
"keywords": [
7676
"mysql",

0 commit comments

Comments
 (0)