CC-2301 : destorying dialogs instead of just closing to free up resources.

This commit is contained in:
Naomi 2013-04-25 17:48:35 -04:00
parent 8fea97d580
commit 2b22828e85
1 changed files with 2 additions and 2 deletions

View File

@ -1158,7 +1158,7 @@ var AIRTIME = (function(AIRTIME){
var x; var x;
}}, }},
{text: "Cancel", click: function() { {text: "Cancel", click: function() {
$(this).dialog("close"); $(this).dialog("destroy");
}} }}
], ],
open: function (event, ui) { open: function (event, ui) {
@ -1224,7 +1224,7 @@ var AIRTIME = (function(AIRTIME){
changeCues($html, id, cueIn, cueOut); changeCues($html, id, cueIn, cueOut);
}}, }},
{text: "Cancel", click: function() { {text: "Cancel", click: function() {
$(this).dialog("close"); $(this).dialog("destroy");
}} }}
], ],
open: function (event, ui) { open: function (event, ui) {