summaryrefslogtreecommitdiff
path: root/js/tool.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tool.js')
-rw-r--r--js/tool.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/js/tool.js b/js/tool.js
index 2953dbc..79df7f5 100644
--- a/js/tool.js
+++ b/js/tool.js
@@ -9,7 +9,6 @@ var Tool = Model({
done: function(){},
focus: function(){
// focused && focused.blur()
- console.log("focusing ", this.name)
current_tool && current_tool.blur()
current_tool = this
this.span.classList.add('focused')
@@ -18,7 +17,6 @@ var Tool = Model({
},
blur: function(){
current_tool = null
- console.log("blurring ", this.name)
this.span.classList.remove('focused')
this.done()
}
@@ -48,7 +46,6 @@ var BlurredCheckbox = Checkbox.extend({
if (this.name != 'shader' && is_desktop) { cursor_input.focus() }
},
blur: function(){
- console.log("blurring ", this.name)
this.span.classList.remove('focused')
this.done()
}
@@ -65,7 +62,6 @@ var BlurredTool = Tool.extend({
if (this.name != 'shader' && is_desktop) { cursor_input.focus() }
},
blur: function(){
- console.log("blurring ", this.name)
this.span.classList.remove('focused')
this.done()
}