Gheorghe Anghelescu
Gheorghe Anghelescu
This looks like it has been resolved. I can press the 3 dots next to a PDF and then press open with to open with an external reader.
Some ideas that may slightly reduce code size: - Babel outputs uninitialised variable declarations as initialised to `undefined` ([Babel repl](http://babeljs.io/repl/#?babili=false&evaluate=false&lineWrap=false&presets=es2015%2Ces2015-loose&experimental=false&loose=true&spec=false&code=let%20x%3B), [search results](https://github.com/search?utf8=%E2%9C%93&q=user%3Aaurelia+path%3Adist%2Fnative-modules+language%3Ajavascript+void+0+&type=Code&ref=searchresults)). This is unnecessary since uninitialised variables are automatically...
Regarding polyfils, https://polyfill.io/ is a service which serves only the needed polyfills for each browser (MutationObserver was added recently). It could be mentioned in the documentation alongside instructions on how...
Search for "singleton" instead. Decorators are functions that can be 'applied' in a few ways.
For direct rustc invocations this can be achieved using `--force-warn=unused_imports -Awarnings`. Relevant documentation: https://doc.rust-lang.org/rustc/lints/groups.html https://doc.rust-lang.org/rustc/lints/levels.html#via-compiler-flag
Related: https://github.com/edwardtufte/tufte-css/issues/99.
In Firefox 61.0a1 (2018-03-19) (64-bit) with "Accept third-party cookies and site data" set to "from visited", I get this error: `Failed to register/update a ServiceWorker for scope ‘https://gist.host/’: Storage access...
Maybe this is better suited for the eslint aurelia plugin. https://github.com/bryanrsmith/eslint-plugin-aurelia
Global values can be used in templates using view engine hooks, which are implemented in script. So this can be solved by linting the script using eslint or tslint
The fix should definitely be in `pal-browser` as suggested by @StrahilKazlachev, not in the `ViewFactory`.