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

Unified Diff: pkg/polymer/lib/src/boot.dart

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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « pkg/polymer/lib/polymer.html ('k') | pkg/polymer/lib/src/declaration.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/polymer/lib/src/boot.dart
diff --git a/pkg/polymer/lib/src/boot.dart b/pkg/polymer/lib/src/boot.dart
deleted file mode 100644
index 0bad65fa93e6b6ff6870d0a1a4d5aadadb17e998..0000000000000000000000000000000000000000
--- a/pkg/polymer/lib/src/boot.dart
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
-// for details. All rights reserved. Use of this source code is governed by a
-// BSD-style license that can be found in the LICENSE file.
-
-/// Ported from `polymer/src/boot.js`. *
-part of polymer;
-
-/// Prevent a flash of unstyled content.
-_preventFlashOfUnstyledContent() {
-
- var style = new StyleElement();
- style.text = '.$_VEILED_CLASS { '
- 'opacity: 0; } \n'
- '.$_UNVEIL_CLASS{ '
- '-webkit-transition: opacity ${_TRANSITION_TIME}s; '
- 'transition: opacity ${_TRANSITION_TIME}s; }\n';
-
- // Note: we use `query` and not `document.head` to make sure this code works
- // with the shadow_dom polyfill (a limitation of the polyfill is that it can't
- // override the definitions of document, document.head, or document.body).
- var head = document.querySelector('head');
- head.insertBefore(style, head.firstChild);
-
- _veilElements();
-
- // hookup auto-unveiling
- Polymer.onReady.then((_) => Polymer.unveilElements());
-}
-
-// add polymer styles
-const _VEILED_CLASS = 'polymer-veiled';
-const _UNVEIL_CLASS = 'polymer-unveil';
-const _TRANSITION_TIME = 0.3;
-
-// apply veiled class
-_veilElements() {
- for (var selector in Polymer.veiledElements) {
- for (var node in document.querySelectorAll(selector)) {
- node.classes.add(_VEILED_CLASS);
- }
- }
-}
« no previous file with comments | « pkg/polymer/lib/polymer.html ('k') | pkg/polymer/lib/src/declaration.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698