1
0
mirror of https://github.com/owncloud/bookmarks.git synced 2025-02-21 18:54:32 +01:00

better method naming

This commit is contained in:
Arthur Schiwon 2015-12-27 17:11:28 +01:00
parent f27723369f
commit 13d54eb625

View File

@ -13,14 +13,15 @@
var AddBookmarkView = OC.Backbone.View.extend({
initialize: function() {
_.bindAll(this, 'onAddBookmark', 'onTypeUrl', 'onAddBookmarkError');
_.bindAll(this, 'onAddBookmark', 'updateAddButtonState', 'onAddBookmarkError');
view = this;
this.$el.find('#add_url').on('keydown keyup change click', view.onTypeUrl);
this.$el.find('#add_url').on('keydown keyup change click', view.updateAddButtonState);
this.updateAddButtonState();
},
onTypeUrl: function() {
updateAddButtonState: function() {
var button = this.$el.find('#bookmark_add_submit');
this.$el.off('submit');
if(!this.$el.find('#add_url').val().trim()) {
@ -77,7 +78,7 @@
resetElements: function() {
this.$el.find('#bookmark_add_submit').addClass('icon-add');
this.$el.find('#bookmark_add_submit').removeClass('icon-loading-small');
this.onTypeUrl();
this.updateAddButtonState();
}