Jeevananandan J

Results 34 comments of Jeevananandan J

Thanks for the info and thanks for your patience towards me. > setting the message to be empty string > This is what doesn't make sense for me. Please see...

You can append query string before the url. so that based on the query string, the browser will check whether need to load or not. Cache should be true for...

From your code ``` angular .module('IloadsApp') ``` I understood that you are not creating the module. You are referring the existing module. The configuration part will be called only once...

This is not from the oclazyload plugin. This is like how you structure the application. Please use the pluker to reproduce the issue. If there is view and proper controller...

Use like the follow, you will not get the error. ``` loadMyCtrl: ['$ocLazyLoad', '$q', function ($ocLazyLoad, $q) { var deferred = $q.defer(); try { $ocLazyLoad.load('app/staticPages/static.controller.js').then(function () { deferred.resolve(); }); }...

You need to load like the following. For example, for the js we need to use like, ``` $ocLazyLoad.load({ insertBefore: '#loadJsBefore', name: 'fancyTreeJs', files: [{ type: 'js', path: 'bundles/fancytree' }]...

I thought to integrate this plugin to my application since redux-dynamic-module is not maintained. It would be helpful if you do any work around as soon as possible. @fostyfost

The following will solve the issue. For smaller device have 95% width.. .cg-notify-message { top: 10px !important; margin: auto !important; left: 0 !important; right: 0 !important; max-width: 95% !important; }...

Solved the issue. I don't know the root cause. But the following solved my issue. Taken the last notify instance and closed that notify specifically. ``` if (appServices.lastNotify && appServices.lastNotify.close)...