From 67a52526133c68443de451964e5da75c1be61c57 Mon Sep 17 00:00:00 2001 From: Rimas Kudelis Date: Fri, 12 Jul 2013 22:28:34 +0300 Subject: Extend basic notification to add a star icon overlay if we're in IE Pinned site mode (Win7+). The star icon is taken from Xiao Icon set (http://delacro.deviantart.com/art/Xiao-Icon-84772282). --- plugins/newmail_notifier/newmail_notifier.js | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'plugins/newmail_notifier/newmail_notifier.js') diff --git a/plugins/newmail_notifier/newmail_notifier.js b/plugins/newmail_notifier/newmail_notifier.js index b2d7cf497..c398424b6 100644 --- a/plugins/newmail_notifier/newmail_notifier.js +++ b/plugins/newmail_notifier/newmail_notifier.js @@ -34,6 +34,13 @@ function newmail_notifier_stop(prop) $('').replaceAll('link[rel="shortcut icon"]'); rcmail.env.favicon_href = null; } + + // Remove IE icon overlay if we're pinned to Taskbar + try { + if(window.external.msIsSiteMode()) { + window.external.msSiteModeClearIconOverlay(); + } + } catch(e) {} } // Basic notification: window.focus and favicon change @@ -49,6 +56,13 @@ function newmail_notifier_basic() rcmail.env.favicon_href = oldlink.attr('href'); link.replaceAll(oldlink); + + // Add IE icon overlay if we're pinned to Taskbar + try { + if (window.external.msIsSiteMode()) { + window.external.msSiteModeSetIconOverlay('plugins/newmail_notifier/overlay.ico', rcmail.gettext('title', 'newmail_notifier')); + } + } catch(e) {} } // Sound notification -- cgit v1.2.3