Skip to content

Commit 5f430d6

Browse files
Merge pull request #47 from brandynbennett/master
Fix #46 unmaskedValue of 0 does not appear
2 parents 8b79592 + 1009fcd commit 5f430d6

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

addon/components/input-mask.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default Ember.TextField.extend({
7979
inputmask.mask(this.element);
8080

8181
// Initialize the unmasked value if it exists
82-
if (this.get('unmaskedValue')) {
82+
if (Ember.isPresent(this.get('unmaskedValue'))) {
8383
this.element.value = this.get('unmaskedValue');
8484
}
8585

tests/integration/number-input-test.js

+7
Original file line numberDiff line numberDiff line change
@@ -82,3 +82,10 @@ test('extra options work', function(assert) {
8282
assert.equal(find('input').value, '1.2345,67890');
8383
assert.equal(this.unmaskedValue, '12345,6789', 'unmasked value is incorrect'); // in a browser, this will unmask as '12345,67890', but the trailing zero does not work in PhantomJS
8484
});
85+
86+
test('0 values will appear', function(assert) {
87+
this.set('unmaskedValue', 0);
88+
this.render(hbs`{{number-input unmaskedValue=unmaskedValue}}`);
89+
assert.equal(find('input').value, '0');
90+
assert.equal(this.unmaskedValue, '0', 'unmasked value is correct');
91+
});

0 commit comments

Comments
 (0)