summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2014-04-18 21:27:48 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2014-04-18 21:27:48 +0200
commit406dcbbcd3b800582d79c6d8095b905367d0141a (patch)
tree743e46ed365c01a1ff8365086ffc420af92ef836 /js
parentae77f29440ce3aec26e115502ea804d1533494e9 (diff)
downloadbugzilla-406dcbbcd3b800582d79c6d8095b905367d0141a.tar.gz
bugzilla-406dcbbcd3b800582d79c6d8095b905367d0141a.tar.xz
Backout bug 984980
Diffstat (limited to 'js')
-rw-r--r--js/field.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/js/field.js b/js/field.js
index b7e90ce1c..892c8669f 100644
--- a/js/field.js
+++ b/js/field.js
@@ -1083,33 +1083,3 @@ function updateRemainingTime() {
// if the remaining time is changed manually, update bz_remaining_time
bz_remaining_time = document.changeform.remaining_time.value;
}
-
-var keys = [];
-function keys_pressed(e, bug_id) {
- // Store an entry for every key pressed
- keys[e.keyCode] = true;
-
- // (Ctrl XOR cmd) + Shift + P
- if ((!keys[17] != !keys[224]) && keys[16] && keys[80]) {
- // Check if we are already in preview mode
- if (YAHOO.util.Dom.hasClass('comment_preview_tab', 'active_comment_tab')){
- show_comment_edit();
- document.getElementById('comment').focus();
- YAHOO.util.Event.preventDefault(e);
- }
-
- else {
- // Ensure that we switch to preview mode only if the textarea is in focus
- var comment = document.getElementById('comment');
- if (document.activeElement == comment) {
- show_comment_preview(bug_id);
- YAHOO.util.Event.preventDefault(e);
- }
- }
- }
-}
-
-function keys_released(e) {
- // Mark keys that were released
- keys[e.keyCode] = false;
-} \ No newline at end of file