blog-easy-client
Advanced tools
Comparing version 1.0.5 to 1.0.6
22
index.js
@@ -1536,13 +1536,13 @@ // Main OBJECT | ||
if(tname === 'coverImage') Coverimage = true; | ||
var url= node.style.background.split("url")[1].split(" ")[0].slice(3,-2); | ||
Nodes.push({ | ||
id:setId(), | ||
tag:'div', | ||
type:tname, | ||
file : null, | ||
data: '/'+url, | ||
class: node.getAttribute('class'), | ||
style: styleToCamel(node.getAttribute('style')) | ||
}); | ||
var url= node.style.background.split("url")[1].split(" ")[0].slice(2,-2); | ||
Nodes.push({ | ||
id:setId(), | ||
tag:'div', | ||
type:tname, | ||
file : null, | ||
data: url, | ||
class: node.getAttribute('class'), | ||
style: styleToCamel(node.getAttribute('style')) | ||
}); | ||
break; | ||
@@ -1549,0 +1549,0 @@ |
{ | ||
"name": "blog-easy-client", | ||
"version": "1.0.5", | ||
"version": "1.0.6", | ||
"description": "A javascript client library for blog-easy which integrates a fully automated blog CMS (content management system) which makes it easy to create and publish blog post", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -37,3 +37,3 @@ # blog-easy-client | ||
```javascript | ||
<script src="https://cdn.allkods.in/blog-easy-client.js"></script> | ||
<script src="https://cdn.allkods.in/blog-easy-client-1.0.6.js"></script> | ||
``` | ||
@@ -40,0 +40,0 @@ |
59041