doktordirk

Results 24 comments of doktordirk

if devTools 2.x still works, then PATCH, if not not, MAJOR imho (plus a deprecation note to previous version)

hmm seems basic to me to only bind an index ```html ``` and maybe an editor ```html ``` I'm not keen ton passing large object around

Let's say i have a main/details view and then in the details view ```js activate(parameters) { this.messageId = parameters.messageId; } ``` To get the message data there or in a...

seems to be in there plain aurelia project. so, just use aurelia-cli do make one for you, same as some other frameworks there

try .AureliaPlugin({includeAll: "src"}) https://github.com/aurelia/webpack-plugin/wiki/AureliaPlugin-options

could be related, but there's a bug in the code for sorting where it says in `updateNodeWidths` ```js // finally re-layout them in reverse order (to get correct placement) newNodes...

uff. found a workaround. remove the default `[query]` for [assets](https://webpack.js.org/configuration/output/#outputassetmodulefilename) eg by ``` output.assetModuleFilename = '[name][ext]', ``` or setting `generator.filename` for individual assets in the `module.rules`

actually besides not being the fastest i have the fewest trouble with jspm

`npm i html2pdf.js` or suposably more stable `npm i [email protected]` and enable in froala config. ```js import html2pdf from 'html2pdf.js'; // .... const froalaConfig = { html2pdf: html2pdf, } ```