#5944: Unify indentation style and strip trailing whitespaces across JS code, no functional changes (patch by xzcvczx + a lot more)

This commit is contained in:
Mike Gelfand
2015-05-05 19:12:48 +00:00
parent 5de8bbe6d8
commit 7177d43ba1
11 changed files with 1180 additions and 1178 deletions

View File

@@ -15,7 +15,7 @@ Dialog.prototype = {
* Constructor
*/
initialize: function() {
/*
* Private Interface Variables
*/
@@ -25,7 +25,7 @@ Dialog.prototype = {
this._cancel_button = $('#dialog_cancel_button');
this._confirm_button = $('#dialog_confirm_button');
this._callback = null;
// Observe the buttons
this._cancel_button.bind('click', {dialog: this}, this.onCancelClicked);
this._confirm_button.bind('click', {dialog: this}, this.onConfirmClicked);
@@ -108,6 +108,6 @@ Dialog.prototype = {
transmission.hideMobileAddressbar();
this._container.show();
}
}