Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset=utf-8 />
  <title>Polymer Demo</title>
  
  <script src="http://www.polymer-project.org/platform.js"></script>
  <link rel="import" href="http://www.polymer-project.org/components/core-localstorage/core-localstorage.html">
</head>
<body>
  <template is="auto-binding">
    <core-localstorage name="itemsApiURL"
                       value="{{itemsApiURL}}"></core-localstorage>
    <label for="inputElement">itemsApiURL:</label>
    <input type="text"
           id="inputElement"
           value="{{itemsApiURL}}"
           size="50">
  </template>
  <script>
    Polymer.extend(document.querySelector('template'), {
      itemsApiURL: 'http://server:port/api/items';
    });
  </script>
  
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
sjmilespro
0viewers