Skip to content

Instantly share code, notes, and snippets.

@robdodson
Created April 13, 2014 16:27
Show Gist options
  • Save robdodson/10591068 to your computer and use it in GitHub Desktop.
Save robdodson/10591068 to your computer and use it in GitHub Desktop.
dynamic stylesheet
<polymer-element name="background-img" attributes="notitle">
<template>
<link href="background-img{{num}}.css" rel="stylesheet" />
<h1>Hello from background-img</h1>
<content></content>
</template>
<script>
Polymer('background-img', {
created: function() {
this.num = 1;
}
});
</script>
</polymer-element>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment