Bug 805808 - Initialize _activeType to 0 instead of undefined. r=margaret

This commit is contained in:
Kartikaya Gupta 2012-10-27 14:08:36 -04:00
Родитель a30b6a04c4
Коммит e5bb7b2c92
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1596,7 +1596,7 @@ var SelectionHandler = {
// Keeps track of data about the dimensions of the selection. Coordinates
// stored here are relative to the _view window.
cache: null,
_activeType: this.TYPE_NONE,
_activeType: 0, // TYPE_NONE
// The window that holds the selection (can be a sub-frame)
get _view() {