Compare commits

..

No commits in common. 'master' and '0.3.7' have entirely different histories.

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