equal
deleted
inserted
replaced
8 this.highlightQuery(this.get('container').lookup('controller:application').date); |
8 this.highlightQuery(this.get('container').lookup('controller:application').date); |
9 } |
9 } |
10 |
10 |
11 var isMouseDown = false, |
11 var isMouseDown = false, |
12 isHighlighted; |
12 isHighlighted; |
13 Ember.$("#our_table li").mousedown(function () { |
13 Ember.$("#chrono-table li").mousedown(function () { |
14 isMouseDown = true; |
14 isMouseDown = true; |
15 Ember.$(this).toggleClass("highlighted"); |
15 Ember.$(this).toggleClass("highlighted"); |
16 isHighlighted = Ember.$(this).hasClass("highlighted"); |
16 isHighlighted = Ember.$(this).hasClass("highlighted"); |
17 _this.sendUpdate(); |
17 _this.sendUpdate(); |
18 return false; // prevent text selection |
18 return false; // prevent text selection |