##// END OF EJS Templates
feat(svn): improvements to handle SVN protocol 1.4 features...
feat(svn): improvements to handle SVN protocol 1.4 features - added support to actually allow HEAD type calls - support HEAD / DELETE calls properly with new requets - use request session for performance optimization on making a lot of calls.

File last commit:

r3180:a5902294 default
r5215:e17d6d15 default
Show More
shared-styles.js
12 lines | 266 B | application/javascript | JavascriptLexer
js: support shared styles via webpack inline
r3179 const styleElement = document.createElement('dom-module');
js: move raw loader definition. Fixes odd bug in CE/EE injection.
r3180 // this will use raw-loader
import sharedCSS from './style-polymer.css';
js: support shared styles via webpack inline
r3179
styleElement.innerHTML =
`<template>
<style>
${sharedCSS}
</style>
</template>`;
styleElement.register('shared-styles');