Run on index and thread
Clear file queue after upload success corrected fallback detection
This commit is contained in:
parent
5a9af83ba6
commit
d7f82c58fd
@ -6,11 +6,11 @@
|
|||||||
* $config['additional_javascript'][] = 'js/file-selector.js';
|
* $config['additional_javascript'][] = 'js/file-selector.js';
|
||||||
*/
|
*/
|
||||||
|
|
||||||
onready(function () {
|
if (active_page == 'index' || active_page == 'thread') {
|
||||||
|
$(document).ready(function () {
|
||||||
|
|
||||||
// add options panel item
|
// add options panel item
|
||||||
$(document).ready(function () {
|
if (window.Options && Options.get_tab('general')) {
|
||||||
if (window.Options && Options.get_tab('general')) {
|
|
||||||
Options.extend_tab('general', '<label id="file-drag-drop"><input type="checkbox">' + _('Drag and drop file selection') + '</label>');
|
Options.extend_tab('general', '<label id="file-drag-drop"><input type="checkbox">' + _('Drag and drop file selection') + '</label>');
|
||||||
|
|
||||||
$('#file-drag-drop>input').on('click', function() {
|
$('#file-drag-drop>input').on('click', function() {
|
||||||
@ -23,12 +23,11 @@ $(document).ready(function () {
|
|||||||
|
|
||||||
if (localStorage.file_dragdrop === 'undefined') localStorage.file_dragdrop = 'true';
|
if (localStorage.file_dragdrop === 'undefined') localStorage.file_dragdrop = 'true';
|
||||||
if (localStorage.file_dragdrop === 'true') $('#file-drag-drop>input').prop('checked', true);
|
if (localStorage.file_dragdrop === 'true') $('#file-drag-drop>input').prop('checked', true);
|
||||||
}
|
}
|
||||||
});
|
|
||||||
|
|
||||||
// disabled by user, or incompatible browser.
|
// disabled by user, or incompatible browser.
|
||||||
// fallback to old
|
// fallback to old
|
||||||
if (localStorage.file_dragdrop == 'false' || !(window.FileReader || window.File)) {
|
if (localStorage.file_dragdrop == 'false' || !(window.FileReader && window.File)) {
|
||||||
$('.dropzone-wrap').remove();
|
$('.dropzone-wrap').remove();
|
||||||
$('#upload_file').show();
|
$('#upload_file').show();
|
||||||
|
|
||||||
@ -93,15 +92,15 @@ function addThumb(file) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$(document).on('ajax_before_post', function (e, formData) {
|
$(document).on('ajax_before_post', function (e, formData) {
|
||||||
var i;
|
for (var i=0; i<max_images; i++) {
|
||||||
|
|
||||||
for (i=0; i<max_images; i++) {
|
|
||||||
var key = 'file';
|
var key = 'file';
|
||||||
if (i > 0) key += i + 1;
|
if (i > 0) key += i + 1;
|
||||||
formData.append(key, files[i]);
|
formData.append(key, files[i]);
|
||||||
}
|
}
|
||||||
|
});
|
||||||
|
|
||||||
// clear file queue and UI
|
// clear file queue and UI on success
|
||||||
|
$(document).on('ajax_after_post', function () {
|
||||||
files = [];
|
files = [];
|
||||||
$('.file-thumbs').empty();
|
$('.file-thumbs').empty();
|
||||||
});
|
});
|
||||||
@ -185,3 +184,4 @@ $(document).on('paste', function (e) {
|
|||||||
});
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user