jscti
jscti
+1 for this need. I don't want to spam my users for each one of my minor/fix releases, but only major and/or the ones with new features.. Depends for each...
+1 having a totally standard app-routing.module.ts 👍 ``` @NgModule({ imports: [RouterModule.forRoot(routes)], exports: [RouterModule] }) export class AppRoutingModule {} ``` and got the same : ``` node_modules/ng-pwa-tools/lib/common/ng.js:52 throw new Error(modPath +...
Anyone succesfully imported **only what he needs** with webpack (and typescript) ? I can import only what I need from GSAP with : ``` import '../node_modules/gsap/src/minified/TweenLite.min.js'; declare var TweenLite: any;...
Finally got it working with resolve alias and : ``` import 'CSSPlugin'; import 'ScrollToPlugin'; import 'TimelineLite'; import 'TweenLite'; import 'script-loader!ScrollMagic'; import 'script-loader!animation.gsap'; ``` What a pain that was, but I...
+1 Pretty critical/hardcore bug when you use this function to check if a user is LoggedIn or not ... Maybe this plugin is not so secure ^^
It's up to me and you don't know of any of the other technical details. If you think containsKey has no use, remove it from the lib But yeah now...
I had the same android crash problem with : // TS: list = []; // Template : And I fixed it by using `!!list.length` or `list.length > 0` which is...
The !! should be done internally in the directive. Like in js/ts `if (array.length)` is correct and doesn't need an explicit boolean `if (array.length > 0)`
+1 that Here Angular 6 but this bug is present since I use lottie (1 yer, angular 5). JSON are not cached and re-requested every time (*each time a ngIf...
> `listviewItems = new ObservableArray(jsArrayData);` Thanks !