1
0
Fork 0
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:
cobbspur 2013-08-13 21:04:07 +01:00
parent dbb9b3bbfe
commit af6f0b74d1
3 changed files with 2 additions and 2 deletions

View file

Before

Width:  |  Height:  |  Size: 367 B

After

Width:  |  Height:  |  Size: 367 B

View file

Before

Width:  |  Height:  |  Size: 1.8 KiB

After

Width:  |  Height:  |  Size: 1.8 KiB

View file

@ -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 () {