display a dialog when IITC fails to detect the munge set, making users aware of the problem. includes links to the IITC home page, g+ page and community

This commit is contained in:
Jon Atkins
2013-12-26 22:07:44 +00:00
parent 6557720549
commit 84fb672656
2 changed files with 20 additions and 0 deletions

View File

@ -194,6 +194,14 @@ window.detectActiveMungeSet = function() {
}
window.haveDetectedMungeSet = function() {
try {
if (!activeMunge) detectActiveMungeSet();
} catch(e) {
}
return activeMunge != null;
}
window.mungeOneString = function(str) {