if(error != ''){
alert(error);
}else{
- imageUrl.attr('value', fileURL);
+ if(fileURL == ''){
+ alert("There was an internal server error uploading your file.\nPermission denied.");
+ }
+ else{
+ imageUrl.attr('value', appUrl + fileURL);
+ }
}
},
var pastePollInterval = 100;
// The link and title for the help button
- var helpLink = "http://wmd-editor.com/";
- var helpHoverTitle = "WMD website";
+ var helpLink = "http://daringfireball.net/projects/markdown/syntax";
+ var helpHoverTitle = "MarkDown Syntax";
var helpTarget = "_blank";
// -------------------------------------------------------------------
// The input text box
input = doc.createElement("input");
+ input.id = "image-url";
input.type = "text";
input.value = defaultInputText;
style = input.style;