Built assets.

This commit is contained in:
buddh4 2017-03-17 01:20:15 +01:00
parent c6b0b6cb49
commit ee0034fe5f
4 changed files with 8 additions and 21 deletions

View File

@ -2,7 +2,7 @@
/**
* This file is generated by the "yii asset" command.
* DO NOT MODIFY THIS FILE DIRECTLY.
* @version 2017-03-16 14:15:03
* @version 2017-03-16 23:30:52
*/
return [
'all' => [
@ -10,7 +10,7 @@ return [
'basePath' => '@webroot-static',
'baseUrl' => '@web-static',
'js' => [
'js/all-e5af01300369b4db597a85189953e94f.js',
'js/all-05277b1a16b58bb28938b1561d10a390.js',
],
'css' => [
'css/all-5c2de45f6bcfd0a59e11e82f44411f5f.css',

View File

@ -211,6 +211,11 @@ humhub.module('file', function (module, require, $) {
Upload.prototype.done = function (e, response) {
var that = this;
if(!response.result.files || !response.result.files.length) {
module.log.error('error.unknown', true);
}
$.each(response.result.files, function (index, file) {
that.handleFileResponse(file);
});

File diff suppressed because one or more lines are too long