mirror of
https://github.com/Polymer/polymer.git
synced 2025-02-25 18:55:30 -06:00
Merge pull request #3350 from TimvdLippe/fix-binding-with-dash
Fix bindings with special characters
This commit is contained in:
commit
49d04b0dd7
@ -90,7 +90,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|||||||
},
|
},
|
||||||
|
|
||||||
_bindingRegex: (function() {
|
_bindingRegex: (function() {
|
||||||
var IDENT = '(?:' + '[a-zA-Z_$][\\w.:$-*]*' + ')';
|
var IDENT = '(?:' + '[a-zA-Z_$][\\w.:$\\-*]*' + ')';
|
||||||
var NUMBER = '(?:' + '[-+]?[0-9]*\\.?[0-9]+(?:[eE][-+]?[0-9]+)?' + ')';
|
var NUMBER = '(?:' + '[-+]?[0-9]*\\.?[0-9]+(?:[eE][-+]?[0-9]+)?' + ')';
|
||||||
var SQUOTE_STRING = '(?:' + '\'(?:[^\'\\\\]|\\\\.)*\'' + ')';
|
var SQUOTE_STRING = '(?:' + '\'(?:[^\'\\\\]|\\\\.)*\'' + ')';
|
||||||
var DQUOTE_STRING = '(?:' + '"(?:[^"\\\\]|\\\\.)*"' + ')';
|
var DQUOTE_STRING = '(?:' + '"(?:[^"\\\\]|\\\\.)*"' + ')';
|
||||||
|
@ -55,6 +55,7 @@
|
|||||||
<div id="compound2">
|
<div id="compound2">
|
||||||
literal1 {{cpnd1}} literal2 {{cpnd2}}{{cpnd3.prop}} literal3 {{computeCompound(cpnd4, cpnd5, 'literal')}} literal4
|
literal1 {{cpnd1}} literal2 {{cpnd2}}{{cpnd3.prop}} literal3 {{computeCompound(cpnd4, cpnd5, 'literal')}} literal4
|
||||||
</div>
|
</div>
|
||||||
|
<span id="boundWithDash">{{objectWithDash.binding-with-dash}}</span>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
Polymer({
|
Polymer({
|
||||||
@ -134,6 +135,9 @@
|
|||||||
},
|
},
|
||||||
noComputedProp: {
|
noComputedProp: {
|
||||||
computed: 'foobared(noComputed)'
|
computed: 'foobared(noComputed)'
|
||||||
|
},
|
||||||
|
objectWithDash: {
|
||||||
|
type: Object
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
observers: [
|
observers: [
|
||||||
|
@ -279,6 +279,13 @@ suite('single-element binding effects', function() {
|
|||||||
assert.equal(el.$.boundChild.computedWildcard, 15);
|
assert.equal(el.$.boundChild.computedWildcard, 15);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test('binding with dash', function() {
|
||||||
|
el.objectWithDash = {
|
||||||
|
'binding-with-dash': 'yes'
|
||||||
|
};
|
||||||
|
assert.equal(el.$.boundWithDash.textContent, 'yes');
|
||||||
|
})
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
Loading…
Reference in New Issue
Block a user