Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(185)

Side by Side Diff: pkg/polymer/lib/src/js/shadow_dartium.js

Issue 182193002: [polymer] interop with polymer-element and polymer.js (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Prevent polyfilled Shadow DOM in Dartium
Siggi Cherem (dart-lang) 2014/03/06 18:18:08 I wonder if this file should be here or in pkg/web
Jennifer Messerly 2014/03/06 21:05:08 Hmmm. That's a good question. I'm not sure... it's
Siggi Cherem (dart-lang) 2014/03/06 21:26:45 Got it, make sense.
2 if (navigator.userAgent.indexOf('(Dart)') !== -1) {
3 window.Platform = window.Platform || {};
4 Platform.flags = Platform.flags || {};
5 Platform.flags.shadow = 'native';
6 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698