mirror of
https://github.com/moparisthebest/FireTray
synced 2024-12-22 05:48:49 -05:00
Fix check marks invisible in option 'Included accounts'.
Bug introduced in 9afa777c65
.
This commit is contained in:
parent
3e0ede74c7
commit
972f1c642c
@ -92,7 +92,7 @@ chrome_sources := $(chrome_sources_js) \
|
||||
$(wildcard $(chrome_source_root)/content/*.xul) \
|
||||
$(wildcard $(chrome_source_root)/content/*.xml) \
|
||||
$(wildcard $(chrome_source_root)/content/*.css) \
|
||||
$(wildcard $(chrome_source_root)/skin/icons/*.css) \
|
||||
$(wildcard $(chrome_source_root)/skin/*.css) \
|
||||
$(wildcard $(chrome_source_root)/skin/icons/*.gif) \
|
||||
$(wildcard $(chrome_source_root)/skin/icons/*.png) \
|
||||
$(wildcard $(chrome_source_root)/skin/icons/*.svg) \
|
||||
|
@ -217,17 +217,7 @@ firetray.Utils = {
|
||||
return protocolHandler.getFileFromURLSpec(aPath).path;
|
||||
},
|
||||
|
||||
dumpObj: function(obj) {
|
||||
let str = "";
|
||||
for(let prop in firetray.js.listAllProperties(obj)) {
|
||||
try {
|
||||
str += "obj["+prop+"]: " + obj[prop] + "\n";
|
||||
} catch(e) {
|
||||
str += "obj["+prop+"]: Unavailable\n";
|
||||
}
|
||||
}
|
||||
log.info(str);
|
||||
},
|
||||
dumpObj: function(obj) {}, // Use JSON.stringify(obj) instead.
|
||||
|
||||
_nsResolver: function(prefix) {
|
||||
var ns = {
|
||||
|
Loading…
Reference in New Issue
Block a user