Skip to content

Commit 6ab55ba

Browse files
committed
Compile binaries.
1 parent 48ad3ed commit 6ab55ba

12 files changed

+9387
-6714
lines changed

js/Moxie.swf

-1.79 KB
Binary file not shown.

js/Moxie.xap

3.04 KB
Binary file not shown.

js/jquery.plupload.queue/jquery.plupload.queue.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ used as it is.
7373
@param {Boolean} [settings.rename=false] Enable ability to rename files in the queue.
7474
@param {Boolean} [settings.multiple_queues=true] Re-activate the widget after each upload procedure.
7575
*/
76-
;(function($, o) {
76+
;(function($) {
7777
var uploaders = {};
7878

7979
function _(str) {
@@ -198,7 +198,7 @@ used as it is.
198198
$('span.plupload_total_status', target).html(uploader.total.percent + '%');
199199
$('div.plupload_progress_bar', target).css('width', uploader.total.percent + '%');
200200
$('span.plupload_upload_status', target).html(
201-
o.sprintf(_('Uploaded %d/%d files'), uploader.total.uploaded, uploader.files.length)
201+
plupload.sprintf(_('Uploaded %d/%d files'), uploader.total.uploaded, uploader.files.length)
202202
);
203203
}
204204

@@ -247,7 +247,7 @@ used as it is.
247247
if (uploader.total.queued === 0) {
248248
$('span.plupload_add_text', target).html(_('Add Files'));
249249
} else {
250-
$('span.plupload_add_text', target).html(o.sprintf(_('%d files queued'), uploader.total.queued));
250+
$('span.plupload_add_text', target).html(plupload.sprintf(_('%d files queued'), uploader.total.queued));
251251
}
252252

253253
$('a.plupload_start', target).toggleClass('plupload_disabled', uploader.files.length == (uploader.total.uploaded + uploader.total.failed));
@@ -425,4 +425,4 @@ used as it is.
425425
return uploaders[$(this[0]).attr('id')];
426426
}
427427
};
428-
})(jQuery, mOxie);
428+
})(jQuery);

js/jquery.plupload.queue/jquery.plupload.queue.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

js/jquery.ui.plupload/css/jquery.ui.plupload.css

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,15 @@
118118
background-color: #eee;
119119
}
120120

121-
.plupload_file_loading .plupload_file_thumb {
121+
.plupload_thumb_loading {
122122
background: #eee url(../img/loading.gif) center no-repeat;
123123
}
124124

125+
.plupload_thumb_loading .plupload_file_dummy,
126+
.plupload_thumb_embedded .plupload_file_dummy {
127+
display: none;
128+
}
129+
125130
.plupload_file_name {
126131
overflow: hidden;
127132
text-overflow: ellipsis;

0 commit comments

Comments
 (0)