From: Chris Sharp Date: Sun, 19 Jan 2014 14:48:15 +0000 (-0500) Subject: This commit removes confirmation boxes popping up when a hyperlink is clicked X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ebeff77a17fe8791dfdb81f88bfb45f5932258c3;p=evergreen%2Fpines.git This commit removes confirmation boxes popping up when a hyperlink is clicked In PINES, we expect the behavior we've always had, so we revert the change. Revert "Sort of in line with 949322 but not absolutely necessary" This reverts commit e1a7501799119e0f305616af5bf97149d9bdf4c0. --- diff --git a/Open-ILS/xul/staff_client/chrome/content/OpenILS/global_util.js b/Open-ILS/xul/staff_client/chrome/content/OpenILS/global_util.js index d1be18631d..1fec770629 100644 --- a/Open-ILS/xul/staff_client/chrome/content/OpenILS/global_util.js +++ b/Open-ILS/xul/staff_client/chrome/content/OpenILS/global_util.js @@ -576,7 +576,7 @@ .getService(Components.interfaces.nsIClipboardHelper); gClipboardHelper.copyString(text); var Strings = $('offlineStrings') || $('commonStrings'); - // alert(Strings.getFormattedString('openils.global_util.clipboard', [text])); + alert(Strings.getFormattedString('openils.global_util.clipboard', [text])); } catch(E) { var Strings = $('offlineStrings') || $('commonStrings'); alert(Strings.getFormattedString('openils.global_util.clipboard.error', [E]));