Skip to content

Instantly share code, notes, and snippets.

@Donkfather
Created November 20, 2014 18:40
Show Gist options
  • Save Donkfather/4b4499ac9ce378d7ebf8 to your computer and use it in GitHub Desktop.
Save Donkfather/4b4499ac9ce378d7ebf8 to your computer and use it in GitHub Desktop.
designer
<link rel="import" href="../polymer/polymer.html">
<polymer-element name="my-element">
<template>
<style>
:host {
position: absolute;
width: 100%;
height: 100%;
box-sizing: border-box;
top: 0px;
left: 0px;
}
</style>
</template>
<script>
Polymer({
publish: {
"hidden": {
"value": false,
"reflect": true
}
}
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment