balicekt

Results 5 comments of balicekt

Thank you for answer Im a bit confused now. My problem is get UTC time from server for example: 2015:12:03 12:08:47 is my UTC server time and Im in Prague...

I think better way is do own filter. like this this: 'user strict'; angular.module('app') .filter('utcToLocalAgo', function (moment) { return function (value) { return moment.utc(value, 'YYYY:MM:DD:HH:mm:ss' ).local().fromNow(); }; });

Yes, used: cordova-admob-plus

Hey, very nice! I have just one question. I want to show loader before call my API but it doesn't work. My code looks like this: ``` search: function (filterText)...

@ace-han thank you for you answer. searchLoading = false is commented it not about it. It is about $scope.showLoading = true; because $scope.showLoading get true after deferred.resolve is called. It...