diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-03-18 14:29:39 +0100 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-03-18 14:29:39 +0100 |
commit | 5c71a775edc75cc3af963ed09002f1027fcac2ff (patch) | |
tree | 634bb018b2a5bed8cd17b7cb3e969a33c098ad48 /data/lib | |
parent | cd0c3c0cf6fd8a730d54b32facd992d0587ac67b (diff) | |
download | bugzilla-triage-5c71a775edc75cc3af963ed09002f1027fcac2ff.tar.gz |
Set cursor to busy while analyzing Xorg.0.log.
Diffstat (limited to 'data/lib')
-rw-r--r-- | data/lib/rhbzpage.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/data/lib/rhbzpage.js b/data/lib/rhbzpage.js index bca0901..bd03e87 100644 --- a/data/lib/rhbzpage.js +++ b/data/lib/rhbzpage.js @@ -634,6 +634,7 @@ function analyzeXorg(results) { innerString += "No matching lines found!"; } + document.body.style.cursor = "auto"; postMessage(new Message("OpenStringInPanel", '<!DOCTYPE html PUBLIC "-//IETF//DTD HTML 2.0//EN">' + "<html><head><title>Xorg.0.log analysis</title></head><body><pre>\n" + @@ -642,6 +643,7 @@ function analyzeXorg(results) { } function analyzeXorgLog(attachID, backMsg) { + document.body.style.cursor = "wait"; postMessage(new Message("GetURL", { url: "https://" + window.location.hostname + "/attachment.cgi?id=" + attachID, backMessage: backMsg |