##// END OF EJS Templates
pull-requests: expose TODO box in dedicated panel...
pull-requests: expose TODO box in dedicated panel - TODOs are important for merging and code-review we make them important now and shown next to votes for reviewers. - fixed some scrollToComment logic - small UI fixes

File last commit:

r3180:a5902294 default
r4140:eb578430 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');