add missing semicolon
This commit is contained in:
parent
02a248c1a5
commit
c451b396b0
|
@ -7,11 +7,11 @@
|
||||||
scope: {
|
scope: {
|
||||||
placeholder: '=ngPlaceholder'
|
placeholder: '=ngPlaceholder'
|
||||||
},
|
},
|
||||||
link: function (scope, elem, attr) {
|
link: function (scope, elem) {
|
||||||
scope.$watch('placeholder', function () {
|
scope.$watch('placeholder', function () {
|
||||||
elem[0].placeholder = scope.placeholder;
|
elem[0].placeholder = scope.placeholder;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
};
|
||||||
});
|
});
|
||||||
})();
|
})();
|
||||||
|
|
Reference in a new issue