Configuration for internally-developed web components.
This is NOT a web component, Polymer or otherwise. It is just an html file that, in most all cases, should be imported into your app if you are using any pl-* elements.
##Installation
bower install --save https://github.com/bearfriend/pl-config.git
##Usage Import into your app:
<head>
...
<link rel="import" href="bower_components/pl-config/pl-config.html" />
...
</head>Or import into a new pl-* component to force it on all instances of the element:
<link rel="import" href="../polymer/polymer.html" />
<link rel="import" href="../pl-config/pl-config.html" />
...
<polymer-element name="pl-awesome" noscript>
<template>
// all pl-* components should contain the following line
<core-style ref="globalTheme"></core-style>
<span>Awesome!</span>
</template>
...
</polymer-element>