mirror of
https://github.com/TryGhost/Ghost-Admin.git
synced 2023-12-14 02:33:04 +01:00
fixes extensions bug for image uploader
- extensions set to lowercase - changed navigation images to hyphenated names and corrected references
This commit is contained in:
parent
dbb9b3bbfe
commit
af6f0b74d1
3 changed files with 2 additions and 2 deletions
Before Width: | Height: | Size: 367 B After Width: | Height: | Size: 367 B |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
@ -22,9 +22,9 @@
|
|||
UploadUi = function ($dropzone, settings) {
|
||||
var source,
|
||||
$link = $('<a class="js-edit-image image-edit" href="#" >' +
|
||||
'<img src="/public/assets/img/addImage.png" width="16" height="16" alt="add, edit"></a>'),
|
||||
'<img src="/public/assets/img/add-image.png" width="16" height="16" alt="add, edit"></a>'),
|
||||
$back = $('<a class="js-return-image image-edit" href="#" >' +
|
||||
'<img src="/public/assets/img/returnImage.png" width="16" height="16" alt="add, edit"></a>');
|
||||
'<img src="/public/assets/img/return-image.png" width="16" height="16" alt="add, edit"></a>');
|
||||
|
||||
$.extend(this, {
|
||||
bindFileUpload: function () {
|
||||
|
|
Loading…
Reference in a new issue