cavalion-blocks
Advanced tools
Comparing version 0.9.12 to 0.9.13
@@ -0,1 +1,4 @@ | ||
### 2019-12-02 - 0.9.13 | ||
- Fixing some bugs related to requiring relatively addressed resources | ||
### 2019-12-02 - 0.9.12 | ||
@@ -2,0 +5,0 @@ - (FINALLY) Implemented relative resources via require (so cool) |
{ | ||
"name": "cavalion-blocks", | ||
"version": "0.9.12", | ||
"version": "0.9.13", | ||
"description": "`blocks-dot-js` `[].js`", | ||
@@ -5,0 +5,0 @@ "main": "README.js", |
@@ -109,2 +109,4 @@ define(function(require) { | ||
var args = js.copy_args(arguments); | ||
sourceUri = sourceUri || uri; | ||
@@ -148,3 +150,3 @@ /*- TODO clean up */ | ||
load: function(source, success, failure) { | ||
var me = this, uri = this._sourceUri.split("!").pop(); | ||
var me = this, uri = (this._sourceUri||this._uri).split("!").pop(); | ||
if(source && source.charAt && source.charAt(0) === "\"" && | ||
@@ -151,0 +153,0 @@ source.indexOf("\"use strict\";") !== 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
61985
1552