This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| > METEOR_PROFILE=1 meteor --verbose | |
| | (#1) Profiling: ProjectContext resolveConstraints | |
| | Selecting package versions / | |
| | ProjectContext resolveConstraints.............................7,827 ms (1) | |
| | ├─ _initializeCatalog.............................................4 ms (1) | |
| | │ └─ LocalCatalog#initialize.....................................3 ms (1) | |
| | │ └─ addPatternsToList 2 ms (2) | |
| | └─ _resolveConstraints........................................7,823 ms (1) | |
| | ├─ bundler.readJsImage.......................................187 ms (1) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| div { | |
| background-color: yellow; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import 'package:polymer/polymer.dart'; | |
| import 'data_vo.dart'; | |
| @CustomTag('child-component') | |
| class ChildComponent extends PolymerElement{ | |
| @published DataVO selectedValue; | |
| ChildComponent.created() : super.created(){ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @HtmlImport('child_component.html') | |
| library com.polymertest.childcomponent; | |
| import 'package:polymer/polymer.dart'; | |
| import 'data_vo.dart'; | |
| @CustomTag('child-component') | |
| class ChildComponent extends PolymerElement{ | |
| @published DataVO selectedValue; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Polymer-Slider-Issue</title> | |
| <link rel="import" href="packages/paper_elements/paper_slider.html"> | |
| <link rel="import" href="packages/paper_elements/roboto.html"> |