grunt-inline
Advanced tools
Comparing version 0.3.1 to 0.3.2
@@ -9,3 +9,3 @@ { | ||
"description": "Inlines img, script and link tags into the same file.", | ||
"version": "0.3.1", | ||
"version": "0.3.2", | ||
"keywords": [ | ||
@@ -12,0 +12,0 @@ "gruntplugin", |
@@ -214,2 +214,3 @@ # grunt-inline[![build status](https://secure.travis-ci.org/miniflycn/grunt-inline.png)](http://travis-ci.org/miniflycn/grunt-inline) | ||
## Release History | ||
* 2014-06-16 v0.3.1 bug fix: protocol-relative urls in css are messed up | ||
* 2014-06-15 v0.3.1 bug fix: when options.tag is '', then all img tags, whose src attribute has already been inlined will be matched. | ||
@@ -216,0 +217,0 @@ * 2014-05-19 v0.3.0 support for new options.exts |
@@ -45,3 +45,3 @@ /* | ||
function isRemotePath( url ){ | ||
return url.match(/^'?https?:\/\//); | ||
return url.match(/^'?https?:\/\//) || url.match(/^\/\//); | ||
} | ||
@@ -48,0 +48,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
78534
226