mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
24 lines
758 B
HTML
24 lines
758 B
HTML
<!--
|
|
Copyright 2012 The Toolkitchen Authors. All rights reserved.
|
|
Use of this source code is governed by a BSD-style
|
|
license that can be found in the LICENSE file.
|
|
-->
|
|
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Icon Button</title>
|
|
<script src="../../polyfills/Components/components-polyfill.js" shadow="shim"></script>
|
|
<link rel="components" href="../../toolkit/src/g-icon-button.html">
|
|
</head>
|
|
<body>
|
|
<g-icon-button src="images/star_full.svg"></g-icon-button>
|
|
<g-icon-button active="true" src="images/star_full.svg"></g-icon-button>
|
|
<g-icon-button id="dyn"></g-icon-button>
|
|
<script>
|
|
window.addEventListener("WebComponentsReady", function() {
|
|
document.querySelector("#dyn").src = "images/star_full.svg";
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|