can-stache-bindings
Advanced tools
Comparing version 3.2.0-pre.2 to 3.2.0-pre.3
@@ -43,3 +43,3 @@ // # can-stache-bindings.js | ||
var canReflect = require("can-reflect"); | ||
var singleReference = require("can-compute/single-reference"); | ||
var singleReference = require("can-util/js/single-reference/single-reference"); | ||
@@ -749,3 +749,4 @@ var noop = function() {}; | ||
DOUBLE_CURLY_BRACE_REGEX = /\{\{/g, | ||
encodedSpacesRegExp = /\\s/g; | ||
encodedSpacesRegExp = /\\s/g, | ||
encodedForwardSlashRegExp = /\\f/g; | ||
@@ -857,4 +858,6 @@ // ## getBindingInfo | ||
}; | ||
var decodeAttrName = function(name) { | ||
return name.replace(encodedSpacesRegExp, " "); | ||
var decodeAttrName = function(name){ | ||
return name | ||
.replace(encodedSpacesRegExp, " ") | ||
.replace(encodedForwardSlashRegExp, "/"); | ||
}; | ||
@@ -861,0 +864,0 @@ |
{ | ||
"name": "can-stache-bindings", | ||
"version": "3.2.0-pre.2", | ||
"version": "3.2.0-pre.3", | ||
"description": "Default binding syntaxes for can-stache", | ||
@@ -5,0 +5,0 @@ "homepage": "http://canjs.com", |
Sorry, the diff of this file is too big to display
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
166428
3673