Dimitri Glazkov

Results 202 issues of Dimitri Glazkov

The fastdom project does a very similar read/write distinction, maybe there's an opportunity to have a **fastdom debug** mode, where `nope.js` is used to throw when dumb things are happening....

Something better than just "nope". Hopefully, giving the dev some clue on what's failing.

https://code.google.com/p/chromium/codesearch#chromium/src/third_party/WebKit/Source/core/dom/Document.cpp&rcl=1427974699&l=1900

Maybe we could measure how long the rAF queue is and throw if it's getting too long?

How does polymer work with modules? For example, `` would expose a global `PivotItem`. How does this interact with AMD? Is this a limitation of polymer or of HTML imports?

discussion

I think @ebidel, @addyosmany, @robdodson have a beautiful story here :smiley:

discussion

Style content in a shadow DOM subtree. This spec (http://w3c.github.io/webcomponents/explainer/) indicates that one of the two ways to permit the page to style content in a shadow DOM subtree in...

discussion

- WinJS ListView issue when used inside `` webcomponent. The ListView's `isZombie` check to determine if it has been disposed relies on `document.body.contains(this.element)`, which fails due to shallow dom encapsulation....

understood
with workaround

- WinJS Binding templates issue - declaring binding template directly in the body otherwise, we fail to find it due to shadow dom encapsulation (https://github.com/banguero/winjs-polymer-samples/blob/master/index.html)

understood
with workaround

(https://github.com/banguero/winjs-polymer-samples/blob/master/elements/winjs-pivot-item.html). Looking for something different than (http://www.polymer-project.org/docs/polymer/polymer.html#static) where if the definition is ``, I would like to set `PivotItem.isDeclarativeControlContainer` to a function after `PivotItem` is defined.

understood
with workaround