Merge branch 'dockerbuild' of https://bitbucket.org/yackob03/quay into dockerbuild

This commit is contained in:
root 2013-10-30 20:15:08 +00:00
commit 4a2adfd8ea

View file

@ -715,7 +715,17 @@ ImageHistoryTree.prototype.toggle_ = function(d) {
} }
}; };
/////////////////////////////////////////////////////////////////////////////////////////
/**
* Disposes of the tree.
*/
ImageHistoryTree.prototype.dispose = function() {
var container = this.container_ ;
$('#' + container).removeOverscroll();
document.getElementById(container).innerHTML = '';
};
////////////////////////////////////////////////////////////////////////////////
/** /**
* Based off of http://bl.ocks.org/mbostock/1093025 by Mike Bostock (@mbostock) * Based off of http://bl.ocks.org/mbostock/1093025 by Mike Bostock (@mbostock)
@ -814,8 +824,7 @@ ImageFileChangeTree.prototype.notifyResized = function() {
*/ */
ImageFileChangeTree.prototype.dispose = function() { ImageFileChangeTree.prototype.dispose = function() {
var container = this.container_ ; var container = this.container_ ;
$('#' + container).removeOverscroll(); document.getElementById(container).innerHTML = '';
document.getElememtById(container).innerHTML = '';
}; };