summaryrefslogtreecommitdiff
path: root/public/assets/javascripts/ui/editor/HelpCursor.js
diff options
context:
space:
mode:
authorJules Laplace <jules@okfoc.us>2014-11-03 15:29:23 -0500
committerJules Laplace <jules@okfoc.us>2014-11-03 15:29:58 -0500
commit68f3943062919ae081deb3a105dcd1513969b9ee (patch)
tree2370b2c85ec4de13bb6c109594472967428fb57a /public/assets/javascripts/ui/editor/HelpCursor.js
parent79a8caa17b05152533641cfd937925822f569fc1 (diff)
filesize error alert
Diffstat (limited to 'public/assets/javascripts/ui/editor/HelpCursor.js')
-rw-r--r--public/assets/javascripts/ui/editor/HelpCursor.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/public/assets/javascripts/ui/editor/HelpCursor.js b/public/assets/javascripts/ui/editor/HelpCursor.js
index 8ada237..1f18910 100644
--- a/public/assets/javascripts/ui/editor/HelpCursor.js
+++ b/public/assets/javascripts/ui/editor/HelpCursor.js
@@ -19,6 +19,7 @@ var HelpCursor = View.extend({
this.helpButton = $('#help-button')
this.helpButton.click(this.toggle.bind(this))
+ this.$el.html(this.messages['start'])
},
toggle: function(){
@@ -28,7 +29,6 @@ var HelpCursor = View.extend({
start: function(){
if (this.active) return
this.active = true
- this.message('start')
this.helpButton.addClass('active')
this.$el.show()
this.move({ pageX: -1000, pageY: -10000 })