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
| <link rel="import" href="../topeka-elements/topeka-datasource.html"> | |
| <link rel="import" href="../notification-elements/notification-alert.html"> | |
| <link rel="import" href="../topeka-elements/theme.html"> | |
| <link rel="import" href="../topeka-elements/topeka-resources.html"> | |
| <link rel="import" href="../topeka-elements/topeka-app.html"> | |
| <polymer-element name="my-element" on-quiz-done="{{quizDone}}"> | |
| <template> | |
| <style> |
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
| <link rel="import" href="../topeka-elements/theme.html"> | |
| <link rel="import" href="../topeka-elements/topeka-resources.html"> | |
| <link rel="import" href="../topeka-elements/topeka-app.html"> | |
| <link rel="import" href="../topeka-elements/topeka-datasource.html"> | |
| <link rel="import" href="../notification-elements/notification-alert.html"> | |
| <polymer-element name="my-element" on-quiz-done="{{quizDone}}"> | |
| <template> | |
| <style> |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>polyfill node.normalize()</title> | |
| </head> | |
| <body> | |
| <div id="work"> | |
| foo | |
| <span></span> |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title></title> | |
| <style> | |
| x-foo { | |
| display: block; | |
| height: 100px; | |
| width: 100px; |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Drag off screen</title> | |
| <script src="polymer/components/PointerEvents/pointerevents.js"></script> | |
| <style> | |
| #foo { | |
| width: 100px; | |
| height: 100px; |
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
| { | |
| "name": "foo", | |
| "dependencies": { | |
| "polymer-elements": "Polymer/polymer-elements#master", | |
| "polymer-ui-elements": "Polymer/polymer-ui-elements#master" | |
| } | |
| } |
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
| #!/usr/bin/env node | |
| // builtin | |
| var fs = require('fs'); | |
| var path = require('path'); | |
| // modules | |
| var cheerio = require('cheerio'); | |
| var url = /\s*(?:\.\.\/)?components\/([\w-]+)\/.*/; | |
| var dirDepends = {platform: 'Polymer/platform#master'}; |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>SubImport</title> | |
| <script src="polymer/polymer/polymer.js"></script> | |
| <link rel="import" href="x-bar.html"> | |
| </head> | |
| <body> | |
| <x-bar></x-bar> |
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
| <polymer-element name="mark-down-editor"> | |
| <template> | |
| <style> | |
| #markup, #markdown { | |
| width: 50%; | |
| float: left; | |
| } | |
| #editor { | |
| width: 80%; | |
| height: 250px; |
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 lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Template Subtypes</title> | |
| <script src="polymer/CustomElements/custom-elements.js"></script> | |
| <script src="polymer/TemplateBinding/load.js"></script> | |
| </head> | |
| <body> | |
| <script> |