jasonburrows

Results 10 comments of jasonburrows

@ShaofeiZi I took that css file, made a local copy, and referenced it directly within my master css file like this: `@import url('css/handsontable.css');` I imagine you could add it to...

Does this help? In your component get a reference to the component: `@ViewChild(AngularMasonry) private masonry: AngularMasonry;` Then trigger the layout update like this: ``` setTimeout( () => { if (this.masonry){...

Just adding - I've got the same issue. No way I can manage to get this to work with systemjs

Yeah same issue for me @saggy2012. Let me know if you fix this and I'll do the same.

Hey @saggy2012 - got it to work and maybe you had made the same error as me. I had gone through setting this up before and then removed it all...

I have it working using AOT in angular-cli. I was following that cookbook as well and it was a never ending stream of problems until I eventually just migrated to...

Yes this! If I add this to my packages section: ``` 'ng2-material-dropdown' : { main: './index.js', defaultExtension: 'js' } ``` I get http://localhost:3000/node_modules/ng2-material-dropdown/index.js 404 (Not Found) ...but if I add...

Thanks @Gbuomprisco - did this but now I get a new error: `Error: Error: XHR error (404 Not Found) loading http://localhost:3000/node_modules/ng2-material-dropdown/dist/style.scss.js(…)` (I can't actually reopen this issue. Maybe this is...

@Gbuomprisco - thanks, but no I get the same error. I have tried also removing `defaultExtension: 'js' ` just to see if that changed things and it doesn't, same error....

@Gbuomprisco - yeah mine is missing a massive chunk of those files. This is what is in my node_modules/ng2-material-dropdown folder: ![screen shot 2017-01-03 at 1 34 27 pm](https://cloud.githubusercontent.com/assets/18748006/21623932/9f6457c2-d1b9-11e6-81d1-8ad42d78ab83.png) ...maybe someone...