Skip to content

Commit 481189a

Browse files
committed
fix - Upload files min.
1 parent 60c923e commit 481189a

File tree

1 file changed

+1
-1
lines changed
  • resources/assets/javascripts/angular/modules

1 file changed

+1
-1
lines changed

resources/assets/javascripts/angular/modules/path.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ AppPath.provider("path", [function () {
5454
this.$get = ['settings',
5555
function (settings) {
5656
var service = {},
57-
min = (typeof settings.path.min === true);
57+
min = (typeof settings.path.min === 'undefined' || settings.path.min === true);
5858
extension = function (type) {
5959
return ((min) ? '.min' : '') + '.' + type;
6060
};

0 commit comments

Comments
 (0)