Changeset 13181
- Timestamp:
- Jan 24, 2012, 9:01:06 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/web/javascript/transmission.js
r13180 r13181 56 56 $('#turtle-button').click($.proxy(this.toggleTurtleClicked,this)); 57 57 $('#compact-button').click($.proxy(this.toggleCompactClicked,this)); 58 $('#torrent_container').bind('dragover', $.proxy(this.dragenter,this));59 $('#torrent_container').bind('dragenter', $.proxy(this.dragenter,this));60 $('#torrent_container').bind('drop', $.proxy(this.drop,this));61 58 62 59 // tell jQuery to copy the dataTransfer property from events over if it exists … … 76 73 $(document).bind('keyup', $.proxy(this.keyUp, this) ); 77 74 $('#torrent_container').click( $.proxy(this.deselectAll,this) ); 75 $('#torrent_container').bind('dragover', $.proxy(this.dragenter,this)); 76 $('#torrent_container').bind('dragenter', $.proxy(this.dragenter,this)); 77 $('#torrent_container').bind('drop', $.proxy(this.drop,this)); 78 78 $('#inspector_link').click( $.proxy(this.toggleInspector,this) ); 79 79
Note: See TracChangeset
for help on using the changeset viewer.