Skip to content

Commit

Permalink
Compile binaries.
Browse files Browse the repository at this point in the history
  • Loading branch information
jayarjo committed Aug 24, 2016
1 parent 48ad3ed commit 6ab55ba
Show file tree
Hide file tree
Showing 12 changed files with 9,387 additions and 6,714 deletions.
Binary file modified js/Moxie.swf
Binary file not shown.
Binary file modified js/Moxie.xap
Binary file not shown.
8 changes: 4 additions & 4 deletions js/jquery.plupload.queue/jquery.plupload.queue.js
Expand Up @@ -73,7 +73,7 @@ used as it is.
@param {Boolean} [settings.rename=false] Enable ability to rename files in the queue.
@param {Boolean} [settings.multiple_queues=true] Re-activate the widget after each upload procedure.
*/
;(function($, o) {
;(function($) {
var uploaders = {};

function _(str) {
Expand Down Expand Up @@ -198,7 +198,7 @@ used as it is.
$('span.plupload_total_status', target).html(uploader.total.percent + '%');
$('div.plupload_progress_bar', target).css('width', uploader.total.percent + '%');
$('span.plupload_upload_status', target).html(
o.sprintf(_('Uploaded %d/%d files'), uploader.total.uploaded, uploader.files.length)
plupload.sprintf(_('Uploaded %d/%d files'), uploader.total.uploaded, uploader.files.length)
);
}

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

$('a.plupload_start', target).toggleClass('plupload_disabled', uploader.files.length == (uploader.total.uploaded + uploader.total.failed));
Expand Down Expand Up @@ -425,4 +425,4 @@ used as it is.
return uploaders[$(this[0]).attr('id')];
}
};
})(jQuery, mOxie);
})(jQuery);
2 changes: 1 addition & 1 deletion js/jquery.plupload.queue/jquery.plupload.queue.min.js

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

7 changes: 6 additions & 1 deletion js/jquery.ui.plupload/css/jquery.ui.plupload.css
Expand Up @@ -118,10 +118,15 @@
background-color: #eee;
}

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

.plupload_thumb_loading .plupload_file_dummy,
.plupload_thumb_embedded .plupload_file_dummy {
display: none;
}

.plupload_file_name {
overflow: hidden;
text-overflow: ellipsis;
Expand Down

0 comments on commit 6ab55ba

Please sign in to comment.