environment: Allow window.log to take multiple arguments

https://bugzilla.gnome.org/show_bug.cgi?id=675104
This commit is contained in:
Jasper St. Pierre 2012-04-29 16:41:08 -04:00
parent 6122f65e7a
commit 32107ba8b5

View File

@ -39,11 +39,19 @@ function _patchContainerClass(containerClass) {
};
}
function _makeLoggingFunc(func) {
return function() {
return func([].join.call(arguments, ', '));
};
}
function init() {
// Add some bindings to the global JS namespace; (gjs keeps the web
// browser convention of having that namespace be called 'window'.)
window.global = Shell.Global.get();
window.log = _makeLoggingFunc(window.log);
window._ = Gettext.gettext;
window.C_ = Gettext.pgettext;
window.ngettext = Gettext.ngettext;