Skip to content

Instantly share code, notes, and snippets.

@johan-gorter
Created November 14, 2014 08:44
Show Gist options
  • Save johan-gorter/c19d4fa6b80bc745d680 to your computer and use it in GitHub Desktop.
Save johan-gorter/c19d4fa6b80bc745d680 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../paper-calculator/paper-calculator.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
}
#paper_calculator {
width: 1000px;
height: 400px;
position: relative;
}
</style>
<paper-calculator widemode expression="99+6" result="105" id="paper_calculator"></paper-calculator>
</template>
<script>
Polymer({
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment