Fixes: U4-3111 Codeeditorsave.asmx always appear to fail - might need to be backported to 6.2

This commit is contained in:
Shannon
2013-10-15 15:51:30 +11:00
parent 0312b947e1
commit 35545019a5
4 changed files with 9 additions and 4 deletions

View File

@@ -21,7 +21,8 @@
var self = this;
//bind to the save event
this._opts.saveButton.click(function () {
this._opts.saveButton.click(function (event) {
event.preventDefault();
self.doSubmit();
});
},

View File

@@ -21,7 +21,8 @@
var self = this;
//bind to the save event
this._opts.saveButton.click(function () {
this._opts.saveButton.click(function (event) {
event.preventDefault();
self.doSubmit();
});
},

View File

@@ -21,7 +21,8 @@
var self = this;
//bind to the save event
this._opts.saveButton.click(function() {
this._opts.saveButton.click(function (event) {
event.preventDefault();
self.doSubmit();
});
},
@@ -40,6 +41,7 @@
function(t) { self.submitSucces(t); },
function(t) { self.submitFailure(t); });
},
submitSucces: function(t) {

View File

@@ -21,7 +21,8 @@
var self = this;
//bind to the save event
this._opts.saveButton.click(function () {
this._opts.saveButton.click(function (event) {
event.preventDefault();
self.doSubmit();
});
},