test browser version, update bower.json
This commit is contained in:
parent
3f5b72b144
commit
49d1d011f2
|
@ -1,3 +1,5 @@
|
|||
bower_components
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
|
|
|
@ -32,5 +32,8 @@
|
|||
"bower_components",
|
||||
"test",
|
||||
"tests"
|
||||
]
|
||||
],
|
||||
"dependencies": {
|
||||
"knuth-shuffle": "~1.0.0"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
html
|
||||
head
|
||||
script(src="bower_components/knuth-shuffle/index.js")
|
||||
script(src="assets/animals.js")
|
||||
script(src="assets/adjectives.js")
|
||||
script(src="index.js")
|
||||
script(src="tests/run-in-node.js")
|
||||
body
|
||||
p Look in the console
|
|
@ -2,7 +2,7 @@
|
|||
;(function (exports) {
|
||||
'use strict';
|
||||
|
||||
var hri = require('./index').hri
|
||||
var hri = exports.humanReadableIds || require('../index').hri
|
||||
, i
|
||||
;
|
||||
|
||||
|
|
Loading…
Reference in New Issue