ViieeS

Results 28 comments of ViieeS

I could fix it with 500ms timeout of initialization

@armyofda12mnkeys `Analytics.set('&uid', '10101234');` - not working for me... don't see it in network tab UPD: working pattern https://github.com/revolunet/angular-google-analytics/issues/175#issuecomment-272894671

Working pattern: ```js AnalyticsProvider .setAccount('UA-XXX-defaultID') .delayScriptTag(true); .ignoreFirstPageLoad(true); app.run([ 'someService', 'Analytics', function(someService, Analytics) { someService.getAccount(resp => { if(expression){ // change default tracker if you need it Analytics.configuration.accounts[0].tracker = resp.acct } Analytics.registerScriptTags();...

since AngularJS v1.6.7 you can use native method `$injector.loadNewModules` for lazy-loading https://github.com/angular/angular.js/blob/master/CHANGELOG.md#new-features-2

@geek1011 I copied your patch to src/nickel.yaml, but it doesn't work. I tried to set `Enabled: yes`, but then kobopatch.bat crashes. What am I doing wrong? dictutil v0.3.1 FW v4.22.15190

@geek1011 Thank you, also I missed this: ```yaml Never sync dictionaries: - Enabled: no - BaseAddress: {Sym: "SyncDictionariesCommand::prepareDownloadList()"} - ReplaceBytes: {Offset: 922, FindH: 0CD5, ReplaceH: 0CE0} #permissions - ReplaceBytes: {Offset:...

@vinodgubbala it adds `slick-carousel` and `angular` into dependencies list, so when you execute `npm install angular-slick-carousel` this dependencies will be installed as well.

@vinodgubbala as I can see it is the same changes in your PR. Unfortunately, the repo looks unmaintainable.

@ericjames I found EJS templating solution too complicated for this purpose. Look at my solution: https://github.com/guzart/gulp-ng-constant/issues/38#issuecomment-345352560

I found another solution using `jeditor` plugin: ```js var jeditor = require("gulp-json-editor"); var ngConstant = require('gulp-ng-constant'); gulp.src('app/config.json') .pipe(jeditor(function (json) { return {"Constants": json}; }, {beautify: false})) .pipe(ngConstant({ name: "my.module.constants", wrap:...