Skip to content

Instantly share code, notes, and snippets.

@qmaruf
Last active August 29, 2015 13:55
Show Gist options
  • Save qmaruf/8717053 to your computer and use it in GitHub Desktop.
Save qmaruf/8717053 to your computer and use it in GitHub Desktop.
Unsaved navigation alert
$(window).on('beforeunload unload', _.bind(_this._unsavedPublisherWarning, _this));
_unsavedPublisherWarning : function(){
var publisherTextLength = this.el_input.val().trim().length;
if(publisherTextLength){
return "navigation_warning";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment