This file contains 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 http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<link rel="stylesheet" type="text/css" href="http://code.jquery.com/qunit/git/qunit.css" /> | |
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script> | |
<script type="text/javascript" src="http://code.jquery.com/qunit/git/qunit.js"></script> |
This file contains 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"> | |
<script src="../polymer/polymer.js"></script> | |
<element name="test-element"> | |
<template> |
This file contains 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="http://www.polymer-project.org/components/polymer/polymer.html"> | |
<polymer-element name="test-element" noscript> | |
<template> | |
Hello, <content></content>. | |
</template> | |
</polymer-element> |
This file contains 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>Dynamic HTML import of element definition doesn't trigger upgrade</title> | |
<script src="http://www.polymer-project.org/platform.js"></script> | |
<!-- If uncommented, the static version of this link works. --> | |
<!-- <link rel="import" href="http://jsbin.com/vovun/2"> --> |
This file contains 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
Web Components bring sanity, efficiency and fun to front-end web development | |
============================================================================ | |
* New HTML standards enable the creation of reusable, shareable | |
web user interface components | |
* Can start today | |
* Numerous implications for front-end JavaScript development |
This file contains 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
<html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="bower_components/platform/platform.js"></script> | |
<link rel="import" href="text-input-with-button.html"> | |
<script> | |
document.addEventListener( "go", function( event ) { | |
alert( event.detail ); | |
}); |
This file contains 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"> | |
<meta name="viewport" content="width=device-width,initial-scale=1"> | |
<script src="akyral-modal/bower_components/platform/platform.js"></script> | |
<link rel="import" href="akyral-modal/bower_components/akyral-modal/akyral-modal.html"> |
This file contains 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
<!-- | |
Repro case for bug that appears under Shady DOM. | |
Attempting to instantiate this component will trigger an exception. Both the | |
hostAttributes and the property change observer appear necessary to trigger the | |
exception. | |
--> | |
<link rel="import" href="../bower_components/polymer/polymer.html"> |
This file contains 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"> | |
<link rel="import" href="../components/polymer/polymer.html"> | |
<template id="test-element"> | |
Hello, <content></content>. | |
</template> |
OlderNewer