Compare commits

...

3 Commits

Author SHA1 Message Date
Chakib Benziane 7571d66905 fixes #34 9 years ago
Dmitri Akatov 4cc8e467bd Merge pull request #32 from kathygit/master
add ";" at the end of the js file so that the minified version works
10 years ago
Kathy Laird 9eb48567ab add ; at the end of the js file so that the minified version works 10 years ago

@ -30,7 +30,7 @@ angular.module('contenteditable', [])
element.bind('input', function(e) {
scope.$apply(function() {
var html, html2, rerender
html = element.html()
html = element.text()
rerender = false
if (opts.stripBr) {
html = html.replace(/<br>$/, '')
@ -95,4 +95,4 @@ angular.module('contenteditable', [])
})
}
}
}}])
}}]);