style(input): fix trailing whitespace

Oops. I blame vim for this little accident.
This commit is contained in:
Caitlin Potter
2014-04-18 18:13:53 -04:00
parent ff428e7283
commit 64a3f42f14

View File

@@ -903,7 +903,7 @@ function textInputType(scope, element, attr, ctrl, $sniffer, $browser) {
var value = element.val(),
event = ev && ev.type;
// IE (11 and under) seem to emit an 'input' event if the placeholder value changes.
// IE (11 and under) seem to emit an 'input' event if the placeholder value changes.
// We don't want to dirty the value when this happens, so we abort here. Unfortunately,
// IE also sends input events for other non-input-related things, (such as focusing on a
// form control), so this change is not entirely enough to solve this.