Put that autoclose regexp back. Firefox, take it easy.

This commit is contained in:
Neil Lalonde 2013-11-28 14:49:00 -05:00
parent 09e3767998
commit a13c7c26f9
1 changed files with 3 additions and 3 deletions

View File

@ -7,9 +7,9 @@ Discourse.AutoCloseFormComponent = Ember.Component.extend({
}.property('labelKey'),
autoCloseChanged: function() {
// if( this.get('autoCloseTime') && this.get('autoCloseTime').length > 0 ) {
// this.set('autoCloseTime', this.get('autoCloseTime').replace(/[^\d-\s\:]/g, '') );
// }
if( this.get('autoCloseTime') && this.get('autoCloseTime').length > 0 ) {
this.set('autoCloseTime', this.get('autoCloseTime').replace(/[^\d-\s\:]/g, '') );
}
this.set('autoCloseValid', this.isAutoCloseValid());
}.observes('autoCloseTime'),