##// END OF EJS Templates
repo-api: allow repo admins to get/set settings. Previously it was only super-admins that could do that, and it's wrong.
repo-api: allow repo admins to get/set settings. Previously it was only super-admins that could do that, and it's wrong.

File last commit:

r3180:a5902294 default
r4474:673400c0 default
Show More
shared-styles.js
12 lines | 266 B | application/javascript | JavascriptLexer
const styleElement = document.createElement('dom-module');
// this will use raw-loader
import sharedCSS from './style-polymer.css';
styleElement.innerHTML =
`<template>
<style>
${sharedCSS}
</style>
</template>`;
styleElement.register('shared-styles');