mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-28 18:17:29 -05:00
19 lines
391 B
Text
19 lines
391 B
Text
|
/*global Mousetrap:true */
|
||
|
|
||
|
export default Ember.View.extend({
|
||
|
classNames: ['customize'],
|
||
|
|
||
|
_init: function() {
|
||
|
var controller = this.get('controller');
|
||
|
Mousetrap.bindGlobal('mod+s', function() {
|
||
|
controller.send("save");
|
||
|
return false;
|
||
|
});
|
||
|
}.on("didInsertElement"),
|
||
|
|
||
|
_cleanUp: function() {
|
||
|
Mousetrap.unbindGlobal('mod+s');
|
||
|
}.on("willDestroyElement")
|
||
|
|
||
|
});
|