From a601f0840557c8ca815992a79d4b57392f3ef5bf Mon Sep 17 00:00:00 2001 From: David Underhill Date: Sat, 6 Dec 2008 23:55:20 -0800 Subject: [PATCH] bug fix: container's SizeHelper should be told the associated tb is null --- jtoolbar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jtoolbar.js b/jtoolbar.js index 391c97b..fccf7c6 100644 --- a/jtoolbar.js +++ b/jtoolbar.js @@ -1670,7 +1670,7 @@ var JTB = function() { parent.insertBefore(this.e_container, nextChild); } - this.sz_container = new JTB.SizeHelper(this.e_container, this); + this.sz_container = new JTB.SizeHelper(this.e_container, null); }; /* create and hook the toolbar into the UI (assumes it is not already hooked in */