Skip to content

Commit

Permalink
Fix #839: Correct initialPreview generation and sortable behavior f…
Browse files Browse the repository at this point in the history
…or async uploads
  • Loading branch information
kartik-v committed Jan 14, 2017
1 parent 757b722 commit b699a83
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 30 deletions.
5 changes: 4 additions & 1 deletion CHANGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Change Log: `bootstrap-fileinput`

## version 4.3.7

**Date:** 30-Dec-2016
**Date:** 15-Jan-2017

1. (enh #812): Update Greek Translations.
2. (enh #816): New property `msgFileTypes` to control descriptions/localizations of file types displayed.
Expand All @@ -14,6 +14,9 @@ Change Log: `bootstrap-fileinput`
7. (bug #825): Correct `fileimagesresized` event triggering.
8. (bug #826): Extend language configuration to consider defaults.
9. (enh #828): Allow drag sort of single uploaded thumbnails with `initialPreview` config set (post upload).
10. (enh #831): Update Finnish Translations.
11. (enh #837): Update Czech Translations.
12. (bug #839): Correct `initialPreview` generation and sortable behavior for async uploads.

## version 4.3.6

Expand Down
8 changes: 7 additions & 1 deletion css/fileinput.css
Original file line number Diff line number Diff line change
Expand Up @@ -373,11 +373,17 @@
display: inline;
margin-right: 2px;
font-size: 16px;
opacity: 0.6;
cursor: not-allowed;
}

.file-sortable .file-drag-handle {
cursor: move;
cursor: -webkit-grabbing;
opacity: 1;
}

.file-drag-handle:hover {
.file-sortable .file-drag-handle:hover {
opacity: 0.7;
}

Expand Down
2 changes: 1 addition & 1 deletion css/fileinput.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit b699a83

Please sign in to comment.