Compare commits

...

2 Commits

Author SHA1 Message Date
Ludwig Schubert 4745281c2b 2.2.5 2017-10-24 17:02:06 -07:00
Ludwig Schubert ebffcb4416 Fix typo 2017-10-24 17:02:03 -07:00
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "distill-template",
"version": "2.2.4",
"version": "2.2.5",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "distill-template",
"version": "2.2.4",
"version": "2.2.5",
"description": "Template for creating Distill articles.",
"main": "dist/template.v2.js",
"bin": {
+1 -1
View File
@@ -42,7 +42,7 @@ const addBackIn = `
window.addEventListener('WebComponentsReady', function() {
console.warn('WebComponentsReady');
const loaderTag = document.createElement('script');
loaderTag.src = 'http://localhost:8888/dist/template.v2.js';
loaderTag.src = '/template.v2.js';
document.head.insertBefore(loaderTag, document.head.firstChild);
});
`;