1
0
Форкнуть 0

Merge pull request #6 from Microsoft/users/aazhou/cleanup

Fix casting to number
This commit is contained in:
Aaron Zhou 2016-10-13 10:19:41 -07:00 коммит произвёл GitHub
Родитель d75768b24b a21f97cad6
Коммит 3a60ca14eb
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -68,7 +68,7 @@ export class View {
}
private _inputChanged(): void {
let newValue = $("input").val();
let newValue = Number($("input").val());
if (this.onInputChanged) {
this.onInputChanged(newValue);
}