error.js File Reference

Go to the source code of this file.

Functions

 if (typeof foldersync== 'undefined')
 
window addEventListener ("load", function(e){foldersync.errorDialog.onLoad(e, window.arguments[0], window.arguments[1]);}, false)
 

Variables

foldersync errorDialog
 

Function Documentation

window addEventListener ( "load"  ,
function(e){foldersync.errorDialog.onLoad(e, window.arguments[0], window.arguments[1]);}  ,
false   
)
if ( typeof  foldersync = = 'undefined')

Definition at line 5 of file error.js.

Variable Documentation

foldersync errorDialog
Initial value:
= {
onLoad: function(e, error, message){
document.getElementById("foldersync-error-description").textContent=error;
if (message.toString() != "")
{
var sMessage = message.split("\n");
for each (var cLine in sMessage)
{
var clabel = document.getElementById("foldersync-error-messagebox").
appendChild(document.createElement("label"));
clabel.setAttribute("width","200");
clabel.setAttribute("style","-moz-user-select:text; cursor: text");
clabel.textContent=cLine;
}
} else {
document.getElementById("foldersync-error-message").
removeChild(document.
getElementById("foldersync-error-messagegroup"));
}
},
onUnload: function(e){
},
}
imageContainer appendChild(newImage)
document getElementById("theimagecontainer").collapsed
Lastfm onLoad
Definition: mini.js:36
imageContainer removeChild(oldImage)
GstMessage * message
function onUnload()
onUnload - called when the cover preview window unloads.
Definition: coverPreview.js:36

Definition at line 12 of file error.js.