This commit is contained in:
Zixaphir 2015-01-14 17:08:17 -07:00
parent 0aef2700dc
commit 82c74a0cf1
3 changed files with 3 additions and 3 deletions

View File

@ -9836,7 +9836,7 @@
return; return;
} }
list = QR.nodes.thread; list = QR.nodes.thread;
options = [list.firstChild]; options = [list.firstElementChild];
_ref = g.BOARD.threads.keys; _ref = g.BOARD.threads.keys;
for (_i = 0, _len = _ref.length; _i < _len; _i++) { for (_i = 0, _len = _ref.length; _i < _len; _i++) {
thread = _ref[_i]; thread = _ref[_i];

View File

@ -9879,7 +9879,7 @@
return; return;
} }
list = QR.nodes.thread; list = QR.nodes.thread;
options = [list.firstChild]; options = [list.firstElementChild];
_ref = g.BOARD.threads.keys; _ref = g.BOARD.threads.keys;
for (_i = 0, _len = _ref.length; _i < _len; _i++) { for (_i = 0, _len = _ref.length; _i < _len; _i++) {
thread = _ref[_i]; thread = _ref[_i];

View File

@ -365,7 +365,7 @@ QR =
generatePostableThreadsList: -> generatePostableThreadsList: ->
return unless QR.nodes return unless QR.nodes
list = QR.nodes.thread list = QR.nodes.thread
options = [list.firstChild] options = [list.firstElementChild]
for thread in g.BOARD.threads.keys for thread in g.BOARD.threads.keys
options.push $.el 'option', options.push $.el 'option',
value: thread value: thread