Skip to content

Commit

Permalink
delinting #114
Browse files Browse the repository at this point in the history
  • Loading branch information
forresto committed Apr 29, 2013
1 parent af04b55 commit de4b4e5
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/nodes/ui-makeymakey.js
Original file line number Diff line number Diff line change
@@ -1,12 +1,8 @@
/*global Stats:true*/

// extends src/nodes/time.js which extends src/node-box-native-view.js

$(function(){

var template =
'<b>makeymakey</b><br /><div class="info"></div>'+
'<label><input type="checkbox" class="active" checked /> active</label>';;
'<label><input type="checkbox" class="active" checked /> active</label>';

Iframework.NativeNodes["ui-makeymakey"] = Iframework.NativeNodes["ui"].extend({

Expand Down Expand Up @@ -91,7 +87,7 @@ $(function(){
},
remove: function() {
var keys = ['space', 'up', 'down', 'left', 'right'];
for (key in keys) {
for (var key in keys) {
Mousetrap.unbind(key, 'keydown');
}
$(window).unbind('click');
Expand Down

0 comments on commit de4b4e5

Please sign in to comment.