chore(): more type fixes

This commit is contained in:
Tim Lancina
2016-01-13 16:34:27 -06:00
parent bd69104ac1
commit 3a41dfeb6b
4 changed files with 14 additions and 15 deletions

View File

@ -181,7 +181,7 @@ export class Select {
*/
@HostListener('click')
_click() {
let isMulti = (this.multiple === true || this.multiple === 'true');
let isMulti = this.multiple === 'true';
// the user may have assigned some options specifically for the alert
let alertOptions = merge({}, this.alertOptions);