Skip to content

Commit

Permalink
ExpertUI 1.0.3 - RC10
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Vach committed Dec 9, 2015
1 parent 506282e commit 4795845
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions dist/app/core/build.js
Original file line number Diff line number Diff line change
Expand Up @@ -15691,10 +15691,11 @@ appController.controller('ControllerController', function($scope, $window, $filt
};
var caps = function(arr) {
var cap = '';
cap += (arr[3] & 0x01 ? 'S' : 's');
cap += (arr[3] & 0x02 ? 'L' : 'l');
cap += (arr[3] & 0x04 ? 'M' : 'm');
console.log(arr);
if (angular.isArray(arr)) {
cap += (arr[3] & 0x01 ? 'S' : 's');
cap += (arr[3] & 0x02 ? 'L' : 'l');
cap += (arr[3] & 0x04 ? 'M' : 'm');
}
return cap;

};
Expand Down

0 comments on commit 4795845

Please sign in to comment.