FolderBrowser: Corrected typo on Upload button title attribute.
Small CSS tweak to filter input textbox - side padding.
This commit is contained in:
@@ -152,7 +152,8 @@
|
||||
|
||||
.umbFolderBrowser .filter input {
|
||||
border: solid 1px #ccc;
|
||||
width: 200px;
|
||||
padding: 0 3px;
|
||||
width: 194px;
|
||||
}
|
||||
|
||||
.umbFolderBrowser .throbber {
|
||||
|
||||
@@ -166,7 +166,7 @@ Umbraco.Sys.registerNamespace("Umbraco.Controls");
|
||||
var self = this;
|
||||
|
||||
// Inject the upload button into the toolbar
|
||||
var button = $("<input id='fbUploadToolbarButton' type='image' src='images/editor/upload.png' titl='Upload...' onmouseover=\"this.className='editorIconOver'\" onmouseout=\"this.className='editorIcon'\" onmouseup=\"this.className='editorIconOver'\" onmousedown=\"this.className='editorIconDown'\" />");
|
||||
var button = $("<input id='fbUploadToolbarButton' type='image' src='images/editor/upload.png' title='Upload...' onmouseover=\"this.className='editorIconOver'\" onmouseout=\"this.className='editorIcon'\" onmouseup=\"this.className='editorIconOver'\" onmousedown=\"this.className='editorIconDown'\" />");
|
||||
button.click(function (e) {
|
||||
e.preventDefault();
|
||||
$(".upload-overlay").show();
|
||||
|
||||
Reference in New Issue
Block a user