@@ -105,13 +105,6 @@ if (process.env.NODE_ENV !== 'production') {
)
},
- BIND_IS: function () {
- warn(
- '<component bind-is="view"> syntax will be deprecated in 1.0.0. Use ' +
- '<component bind-is="view"> instead.'
- )
- },
-
PARTIAL_NAME: function (id) {
warn(
'<partial name="' + id + '">: mustache interpolations inside attributes ' +
@@ -16,9 +16,6 @@ exports.checkComponent = function (el, options) {
// dynamic syntax
var exp = el.getAttribute('is')
if (exp != null) {
- if (process.env.NODE_ENV !== 'production' && /{{.*}}/.test(exp)) {
- _.deprecation.BIND_IS()
- }
el.removeAttribute('is')
} else {
exp = el.getAttribute('bind-is')