asavage
12/17/2015 - 6:00 PM

designer

designer

<link rel="import" href="../paper-progress/paper-progress.html">
<link rel="import" href="../ace-element/ace-element.html">

<polymer-element name="my-element">

  <template>
    <style>    
      :host {
        position: absolute;
        width: 100%;
        height: 100%;
        box-sizing: border-box;
        top: 0px;
        left: 0px;
      }
      #paper_progress {
        left: 330px;
        top: 400px;
        position: absolute;
      }
      #ace_element {
        width: 400px;
        height: 300px;
        left: 340px;
        top: 490px;
        position: absolute;
      }
    </style>
    <paper-progress value="40" ratio="40" id="paper_progress"></paper-progress>
    <ace-element editorvalue="Test Value" id="ace_element">function test() {
  var x = true;
}</ace-element>
  </template>

  <script>

    Polymer({
      
    });

  </script>

</polymer-element>