Thomas Grainger
Thomas Grainger
Let's just get an npm package that works for people who have Firefox installed first On 5 Aug 2016 16:03, "Kevin Grandon" [email protected] wrote: Downloading firefox is really not needed....
@laurentj you should also 301 `http://(www\.)?slimerjs\.org/` to https://slimerjs.org/
@laurentj currently I rely on HTTPS everywhere to ensure I have the correct package.
Can you reopen until the bugs are fixed: https://hstspreload.org/?domain=slimerjs.org On 12 Apr 2017 08:46, "Laurent Jouanneau" wrote: > it has been added since months :-) > > — > You...
@ocombe might be worth deprecating ocLazyLoad?
```js app.factory('loadModule', function($injector, $q) { return function loadModule(moduleName, bundleUrl) { return $q.resolve(import('./path/to/es/module')).then(function(v) { $injector.loadNewModules([v.default]); }); }; }) ```
@BusbyActual what?
@BusbyActual you declare the directive in the module you want to load
Just make sure you compile html in `loadModule(...).then(moduleName => { /* here */ })`
fyi a class can be both slotted, and have a `__dict__` slot ```python class Ham: __slots__ = ["__dict__", "spam"] def __init__(self): self.__dict__ = {"spam": 3} self.eggs = 1 self.spam =...