Fix small possible NPE
This commit is contained in:
parent
a423032e80
commit
28e31150b9
1 changed files with 1 additions and 1 deletions
|
@ -901,7 +901,7 @@ ImageHistoryTree.prototype.toggle_ = function(d) {
|
||||||
ImageHistoryTree.prototype.dispose = function() {
|
ImageHistoryTree.prototype.dispose = function() {
|
||||||
var container = this.container_ ;
|
var container = this.container_ ;
|
||||||
$('#' + container).removeOverscroll();
|
$('#' + container).removeOverscroll();
|
||||||
document.getElementById(container).innerHTML = '';
|
$('#' + container).html();
|
||||||
};
|
};
|
||||||
|
|
||||||
////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
Reference in a new issue