take out window.close() because there is no window to close anymore

since bootstraps modal box, the keyword chooser isn't a window anymore.
This commit is contained in:
Uwe Steinmann 2014-11-07 08:06:08 +01:00
parent 55def11f01
commit 15c163274c

View File

@ -63,13 +63,13 @@ function insertKeywords(keywords) {
}
function cancel() {
window.close();
// window.close();
return true;
}
function acceptKeywords() {
targetObj.value = myTA.value;
window.close();
// window.close();
return true;
}