aero

Results 4 comments of aero

My xiaomi miwifi mini also reboots automatically often on openwrt 21.02.0 I rollbacked the firmware to openwrt 19.07.7.

HI I looked up source code. qx/application/Routing.js uses qx/bom/History.js at https://github.com/qooxdoo/qooxdoo/blob/master/framework/source/class/qx/application/Routing.js#L92 qx/bom/History.js encodes path at https://github.com/qooxdoo/qooxdoo/blob/master/framework/source/class/qx/bom/History.js#L267 with encodeURIComponent function. so it seems that all routing url part of qx.application.Routing are...

@cboulanger Thanks Is it possible to inherit and override _setHash method in qx.bom.History class without modifying original class source ? https://github.com/qooxdoo/qooxdoo/blob/master/framework/source/class/qx/bom/History.js#L384-L392

I found an qx.Class.patch sample code at https://stackoverflow.com/questions/31832625/how-to-use-mixin-in-decorators-for-qooxdoo Based on the above approach, following is the working code ```javascript qx.Mixin.define("qx.bom.HistoryPrettyUrls", { members : { _setHash : function (value) { var...