Remove 'focused' class on blur

pull/6/head
Aleksander Machniak 13 years ago
parent 435d55ecee
commit 3c67157971

@ -252,7 +252,7 @@ blur: function()
for (n in this.selection) { for (n in this.selection) {
id = this.selection[n]; id = this.selection[n];
if (this.rows[id] && this.rows[id].obj) { if (this.rows[id] && this.rows[id].obj) {
$(this.rows[id].obj).removeClass('selected').addClass('unfocused'); $(this.rows[id].obj).removeClass('selected focused').addClass('unfocused');
} }
} }
}, },

Loading…
Cancel
Save