Skip to content

Commit 0763826

Browse files
author
Henrik jJaven
committed
testing build
1 parent a9687f2 commit 0763826

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

frameworks/keyed/doohtml/js/Main.class.timer.js

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,6 @@ const lenA = adjectives.length, lenB = colours.length, lenC = nouns.length
1010

1111
import Timer from './doo.timer.js'
1212

13-
const rowTemplate = document.createElement("tr");
14-
rowTemplate.innerHTML = "<td class='col-md-1'></td><td class='col-md-4'><a class='lbl'></a></td><td class='col-md-1'><a class='remove'><span class='remove glyphicon glyphicon-remove' aria-hidden='true'></span></a></td><td class='col-md-6'></td>";
15-
1613

1714
Doo.define(
1815
class Main extends Doo {
@@ -66,15 +63,16 @@ Doo.define(
6663

6764
const data = []
6865
for (let i = 0; i < count; i++)
69-
// data.push({id: this.ID++,label: adjectives[_random(lenA)] + " " + colours[_random(lenB)] + " " + nouns[_random(lenC)]})
70-
66+
data.push({id: this.ID++,label: adjectives[_random(lenA)] + " " + colours[_random(lenB)] + " " + nouns[_random(lenC)]})
67+
/*
7168
{
7269
label = [adjectives[_random(lenA)],colours[_random(lenB)],nouns[_random(lenC)]]
7370
labelStr = label.join(' ')
7471
//id = this.ID++
7572
data.push({id:this.ID++, label:labelStr})
7673
}
77-
/*
74+
*/
75+
/*
7876
const data = new Map()
7977
Object.defineProperty(data, 'length', {
8078
get() { return data.size },

0 commit comments

Comments
 (0)