Skip to content
Snippets Groups Projects
Commit dc28a5a1 authored by juanf's avatar juanf
Browse files

SSDM-2163 : Remove "OK" from all success messages.

SVN: 34447
parent d4f6e3b8
No related branches found
No related tags found
No related merge requests found
......@@ -122,20 +122,12 @@ var Util = new function() {
}
this.showSuccess = function(withHTML, andCallback, forceAutoHide) {
var isiPad = navigator.userAgent.match(/iPad/i) != null;
if(!isiPad && !forceAutoHide) {
withHTML = withHTML + "<br>" + "<a class='btn btn-default'>OK</a>";
}
if(!forceAutoHide) {
forceAutoHide = false;
}
this.blockUINoMessage();
var localReference = this;
jSuccess(
withHTML,
{
autoHide : isiPad || forceAutoHide,
clickOverlay : false,
autoHide : true,
clickOverlay : true,
MinWidth : 250,
TimeShown : 2000,
ShowTimeEffect : 200,
......
......@@ -159,9 +159,9 @@ function DataSetFormController(mainController, mode, sample, dataSet) {
if(_this._dataSetFormModel.mode === FormMode.CREATE) {
Util.showSuccess("DataSet Created.", callbackOk, true);
Util.showSuccess("DataSet Created.", callbackOk);
} else if(_this._dataSetFormModel.mode === FormMode.EDIT) {
Util.showSuccess("DataSet Updated.", callbackOk, true);
Util.showSuccess("DataSet Updated.", callbackOk);
}
} else { //This should never happen
......
......@@ -121,7 +121,7 @@ function ExperimentFormController(mainController, mode, experiment) {
Util.unblockUI();
}
Util.showSuccess(experimentTypeDisplayName + " " + message, callbackOk, true);
Util.showSuccess(experimentTypeDisplayName + " " + message, callbackOk);
} else { //This should never happen
Util.showError("Unknown Error.", function() {Util.unblockUI();});
}
......
......@@ -93,7 +93,7 @@ function ProjectFormController(mainController, mode, project) {
Util.unblockUI();
}
Util.showSuccess(message, callbackOk, true);
Util.showSuccess(message, callbackOk);
} else { //This should never happen
Util.showError("Unknown Error.", function() {Util.unblockUI();});
}
......
......@@ -371,14 +371,9 @@ function SampleFormController(mainController, mode, sample) {
}
});
}
// TO-DO: The Sample is not necessarily searchable after creation since the index runs asynchronously
// localReference.serverFacade.searchWithType(localReference.sampleTypeCode, $("#sampleCode")[0].value, function(data) {
// mainController.changeView('showViewSamplePageFromPermId',data[0].permId);
// });
}
Util.showSuccess(sampleTypeDisplayName + " " + message, callbackOk, true);
Util.showSuccess(sampleTypeDisplayName + " " + message, callbackOk);
_this._sampleFormModel.isFormDirty = false;
} else { //This should never happen
Util.showError("Unknown Error.", function() {Util.unblockUI();});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment