Neil Stevens

Results 10 comments of Neil Stevens

I would echo what @intellix posted, we use Bamboo for our CI and deployment pipeline with the added complexity that we have an Electron application which hosts an Angular 2...

The `relativeTimeThresholdOptions` do not actually get set on the `moment` object, they are set and used (currently) in the `amDuration` pipe, so they will not get set on the `moment`...

If you are passing `amDuration` a value in minutes then you need to tell `amDuration` that the value is minutes, e.g. `4 | amDuration:'minutes'` will output 4 minutes, if you...

Seems like it should be possible to support the attributes in the Azure Portal when inviting a New User. Looking at the code there is an update of the newly...

Any news on the datepicker?

Can someone at Froala please fix this as a critical priority, I need Ivy enabled in my project and this is the only dependency preventing me from being able to...

Looking at the code, this (line 181 in editor.directive.ts) ``` this._editor.events.on('mousedown', function () { setTimeout(function () { self.onTouched(); }, 0); }); ``` This should be the `blur` event which would...

Ok, so I have found out that the generated functions return type is `Task` and from experimenting, I have been able to return a `FileContentResult` from my command/handler which returns...

Yeah I was basically creating an in-memory Zip file and wanting to return that from the function, the code snippet below should help you ``` using (var ms = new...