Bugzilla – Attachment 3969 Details for
Bug 6235
"Saved" message in sysprefs never gets hidden on IE8
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Corrects a problem where the "Saved" message never disappeared on IE8.
0001-Corrects-a-problem-where-the-Saved-message-never-d.patch (text/plain), 1.28 KB, created by
Frédérick Capovilla
on 2011-04-21 14:25:13 UTC
(
hide
)
Description:
Corrects a problem where the "Saved" message never disappeared on IE8.
Filename:
MIME Type:
Creator:
Frédérick Capovilla
Created:
2011-04-21 14:25:13 UTC
Size:
1.28 KB
patch
obsolete
>From 06a6b49085a7b79b0fef1973146af9a0b5c19673 Mon Sep 17 00:00:00 2001 >From: =?utf-8?q?Fr=C3=A9d=C3=A9rick=20Capovilla?= <frederick.capovilla@sys-tech.net> >Date: Thu, 21 Apr 2011 10:21:34 -0400 >Subject: [PATCH] Corrects a problem where the "Saved" message never disappeared on IE8. > >When saving system preferences, a black message box appears. This >message bos never disappeared on IE8 because the timeout to hide it was >set to Infinity. Changed the default value to 2 seconds instead. >--- > .../prog/en/lib/jquery/plugins/humanmsg.js | 4 ++-- > 1 files changed, 2 insertions(+), 2 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/humanmsg.js b/koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/humanmsg.js >index d38cf93..abf4ed0 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/humanmsg.js >+++ b/koha-tmpl/intranet-tmpl/prog/en/lib/jquery/plugins/humanmsg.js >@@ -38,10 +38,10 @@ var humanMsg = { > > if (options != undefined) { > delay = 'delay' in options ? parseInt(options.delay) * 1000 : 1000 >- life = 'life' in options ? parseInt(options.life) * 1000 : Infinity >+ life = 'life' in options ? parseInt(options.life) * 1000 : 2000 > } else { > delay = 1000 >- life = Infinity >+ life = 2000 > } > > clearTimeout(humanMsg.t2); >-- >1.5.6.5 >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 6235
:
3969
|
3980
|
4934