You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to load polymer-all/polymer/polymer.js (stable v0.0.20130802 and master] in node-webkit version v0.6.3 and am getting the following errors:
Uncaught ReferenceError: PathObserver is not defined template_element.js:508
Runner template_element.js:508
(anonymous function) template_element.js:550
(anonymous function) template_element.js:566
(anonymous function) template_element.js:1432
Uncaught TypeError: Object #<Object> has no method 'performMicrotaskCheckpoint' patches-mdv.js:23
check patches-mdv.js:23
dirtyCheck patches-mdv.js:17
scope.flush patches-mdv.js:33
(anonymous function) boot.js:26
The text was updated successfully, but these errors were encountered:
It looks like the node.js global namespace is colliding with how MDV boots itself. All the MDV modules are wrapped in an IIFE that uses global as the loading scope
(function(global){
...
})(typeofglobal!=='undefined' ? global : this);
Since this is really an MDV issue, I'll post that bug over there.
I'm having this issue here, it actually starts with not finding ArraySplice... any hint on how to fix that? I really wanna use polymer with node-webkit...
I am trying to load
polymer-all/polymer/polymer.js
(stable v0.0.20130802 and master] in node-webkit versionv0.6.3
and am getting the following errors:The text was updated successfully, but these errors were encountered: