summaryrefslogtreecommitdiffstats
path: root/static/script.js
diff options
context:
space:
mode:
Diffstat (limited to 'static/script.js')
-rw-r--r--static/script.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/static/script.js b/static/script.js
index 4274c9c..4701536 100644
--- a/static/script.js
+++ b/static/script.js
@@ -278,11 +278,6 @@ function drawAdd(s) {
)
)
)
- .append($(document.createElement('canvas'))
- .attr('id', 'c_' + s.yid)
- .attr('width', 700)
- .attr('height', 20)
- )
.append($(document.createElement('br')))
.append($(document.createElement('img'))
.attr('src', '/static/player_play.png')
@@ -301,6 +296,11 @@ function drawAdd(s) {
.attr('alt', 'stop')
.click(function() {stop(s.yid)})
)
+ .append($(document.createElement('canvas'))
+ .attr('id', 'c_' + s.yid)
+ .attr('width', 700)
+ .attr('height', 20)
+ )
.append($(document.createElement('br'))
.addClass('clear')
)