diff options
author | jimmydot <jf2512@att.com> | 2017-05-07 14:58:24 -0400 |
---|---|---|
committer | jimmydot <jf2512@att.com> | 2017-05-07 14:58:24 -0400 |
commit | 3982f4f67314ec37fd9b22ae54049958af777c1b (patch) | |
tree | 72111b7c13ee7529cce1ea4c8d83c89fdd164450 /vid/src/main/webapp/app/fusion/scripts/modalService.js | |
parent | 00e0d25933699f9e39c3f0b86c983165a1e3e330 (diff) |
[VID-6] Initial rebase push
Change-Id: I9077be9663754d9b22f77c6a7b3109b361b39346
Signed-off-by: jimmydot <jf2512@att.com>
Diffstat (limited to 'vid/src/main/webapp/app/fusion/scripts/modalService.js')
-rw-r--r-- | vid/src/main/webapp/app/fusion/scripts/modalService.js | 185 |
1 files changed, 0 insertions, 185 deletions
diff --git a/vid/src/main/webapp/app/fusion/scripts/modalService.js b/vid/src/main/webapp/app/fusion/scripts/modalService.js deleted file mode 100644 index 74c848e8..00000000 --- a/vid/src/main/webapp/app/fusion/scripts/modalService.js +++ /dev/null @@ -1,185 +0,0 @@ -angular.module("modalServices",[]).service('modalService', ['$modal', function ($modal) { - - - this.showSuccess = function(heading, messageBody){ - var modalInstance = $modal.open({ - templateUrl: 'modal_informative.html', - controller: 'modalpopupController', - resolve: { - message: function () { - $(".overlayed").css("display","none"); - $(".loadingId").css("display","none"); - var message = { - title: heading, - text: messageBody - }; - return message; - } - } - }); - }; - this.showFailure = function(heading, messageBody){ - var modalInstance = $modal.open({ - templateUrl: 'modal_warning.html', - controller: 'modalpopupController', - resolve: { - message: function () { - var message = { - title: heading, - text: messageBody - }; - return message; - } - } - }); - }; - - this.showMessage = function(heading, messageBody){ - var modalInstance = $modal.open({ - templateUrl: 'modal_message.html', - controller: 'modalpopupController', - resolve: { - message: function () { - var message = { - title: heading, - text: messageBody - }; - return message; - } - } - }); - }; - - this.showWarning = function(heading, messageBody){ - var modalInstance = $modal.open({ - templateUrl: 'modal_warning_message.html', - controller: 'modalpopupController', - resolve: { - message: function () { - var message = { - title: heading, - text: messageBody - }; - return message; - } - } - }); - }; - - this.popupConfirmWin = function(title, msgBody, callback){ - var modalInstance = $modal.open({ - templateUrl: 'confirmation_informative.html', - controller: 'modalpopupController', - resolve: { - message: function () { - var message = { - title: title, - text: msgBody - }; - return message; - } - } - }); - var args = Array.prototype.slice.call( arguments, 0 ); - args.splice( 0, 3); - modalInstance.result.then(function(){ - callback.apply(null, args); - }, function() { - })['finally'](function(){ - modalInstance = undefined; - }); - - }; - this.popupConfirmWinWithCancel = function(title, msgBody, callback,dismissCallback){ - var modalInstance = $modal.open({ - templateUrl: 'confirmation_informative.html', - controller: 'modalpopupController', - resolve: { - message: function () { - var message = { - title: title, - text: msgBody - }; - return message; - } - } - }); - var args = Array.prototype.slice.call( arguments, 0 ); - args.splice( 0, 3); - modalInstance.result.then(function(){ - callback.apply(null, args); - }, function() { - dismissCallback(); - })['finally'](function(){ - modalInstance = undefined; - }); - - }; - this.popupDeleteConfirmWin = function(title, msgBody, callback, argForCallBack){ - var modalInstance = $modal.open({ - templateUrl: 'confirmation_for_delete.html', - controller: 'modalpopupController', - resolve: { - message: function () { - var message = { - title: title, - text: msgBody - }; - return message; - } - } - }); - - modalInstance.result.then(function(){ - callback(argForCallBack); - }, function() { - })['finally'](function(){ - modalInstance = undefined; - }); - - }; - - this.popupSuccessRedirectWin = function(title, msgBody, redirectUrl){ - var modalInstance = $modal.open({ - templateUrl: 'modal_informative.html', - controller: 'modalpopupController', - resolve: { - message: function () { - var message = { - title: title, - text: msgBody - }; - return message; - } - } - }); - modalInstance.result.then(function() { - }, function() { - window.location.href=redirectUrl; - })['finally'](function(){ - modalInstance = undefined; - }); - }; - - this.popupWarningRedirectWin = function(title, msgBody, redirectUrl){ - var modalInstance = $modal.open({ - templateUrl: 'modal_warning_message.html', - controller: 'modalpopupController', - resolve: { - message: function () { - var message = { - title: title, - text: msgBody - }; - return message; - } - } - }); - modalInstance.result.then(function() { - }, function() { - window.location.href=redirectUrl; - })['finally'](function(){ - modalInstance = undefined; - }); - }; - }]);
\ No newline at end of file |