Fred Loney

Results 10 comments of Fred Loney

This is a duplicate of [Issue 277](https://github.com/shlomiassaf/angular2-modal/issues/277)

A work-around is to set the modal body to the inner HTML of a hidden child component as shown in [this example](https://plnkr.co/edit/xJdk9F?p=preview). A refinement of this work-around is to make...

SafeHtml is the tag interface Angular puts on the bypassed string. Perhaps the compile error you show is because of stronger type-checking. At any rate, the solution is to wrap...

cf. the example link above: get innerHTML(): string { // TODO - remove this work-around when the aforementioned issue // is fixed. let html = this.elementRef.nativeElement.innerHTML; let raw = this.sanitizer.bypassSecurityTrustHtml(html);...

I'm afraid I don't understand the question. Perhaps you should post it with a plunkr example on StackOverflow with the [angular2] tag.

You might wish to amend the README as follows: Clarify: > You may have named your jspm config.js file or jspm_packages directory something else. In this case simply add that...

Perhaps you need to install plugin-babel: `jspm install npm:systemjs-plugin-babel`

This might be karma-jspm/jspm interaction weirdness. I use typescript as well, but my karma-jspm fails on a missing traceur library. When I add it, the test runs. jspm checks the...

The lodash incompatibility is resolved by the #34 patch cited above. The other lodash calls in angular-dc are common, stable and appropriate. I suggest that once the patch is merged,...

See also Eve issue [#569](https://github.com/nicolaiarocci/eve/issues/569). Qualifying the offending code to read: `projection = [rev_map[field] for field in projection if field in rev_map]` gets past the problem, since the _etag is...