Aleksandar Beninski

Results 6 comments of Aleksandar Beninski

Great fix! The master branch is not working at all in IE 10/ IE11 for me

@egilkh Don't see any errors in the console. The bug: when I add items to an array created from $localstarage.default in IE 95% time items are are not persisted in...

``` var defaultTabs = [ { name: 'tab 1', isSelected: true, widgets: [] }, { name: 'tab 2', isSelected: false, widgets: []} ]; var tabs = $localStorage.$default({ tabs: defaultTabs }).tabs;...

Hmm I tested it and it didn't seem like it's working.

Not the route but the validate func that calls the callback parameter: ``` validateUser: (decoded, request, callback) => { UserRepo.findById(decoded.id) .then(found => { if (found) { request.user = found; //...

Replacing **ngModel.$formatters.unshift...** in uiSelectMultiple directive with the following code fixed the problem for me: ``` // From model --> view ngModel.$formatters.unshift(function (inputValue) { var data = $select.parserResult.source(scope, { $select: {...