Skip to content

Instantly share code, notes, and snippets.

@knutole
Created May 8, 2015 14:03
Show Gist options
  • Save knutole/24dfdfefa44f424efe29 to your computer and use it in GitHub Desktop.
Save knutole/24dfdfefa44f424efe29 to your computer and use it in GitHub Desktop.
Wu.DomEvent.on(box, 'keydown', this._throttledSave, this);
_throttledSave : function () {
_.throttle(this.save, 1000);
},
save : function () {
var text = div.innerHTML;
this._project.setText(text);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment