dperez schrieb: > Hi, > > I use successfully the facilities in class qx.client.History. > It's really easy to use. But when I load my page inside a frame > (window.parent != window), it stops working ok. Any intent to update the > history, produces a change in the current URL. > > I consider this a bug. > > The workaround I'm using now is this: > > Before: > var hist = qx.client.History.getInstance(); > After: > var hist = window.parent == window ? qx.client.History.getInstance():null; > Hi David,
since no browser has a API for browser history, every implementation of browser history consists of a bunch of hacks :-(. So does our and with the presents of frames, our hack does not work. This can be considered as a bug but I don't know a way around it. Best Fabian -- Fabian Jakobs JavaScript Framework Developer 1&1 Internet AG Brauerstraße 48 76135 Karlsruhe Amtsgericht Montabaur HRB 6484 Vorstand: Henning Ahlert, Ralph Dommermuth, Matthias Ehrlich, Andreas Gauger, Matthias Greve, Robert Hoffmann, Norbert Lang, Achim Weiss Aufsichtsratsvorsitzender: Michael Scheeren ------------------------------------------------------------------------- This SF.net email is sponsored by: Microsoft Defy all challenges. Microsoft(R) Visual Studio 2005. http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/ _______________________________________________ qooxdoo-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/qooxdoo-devel
