On 30/09/15 10:00, Smith, Elliot wrote:
On 29 September 2015 at 18:50, Michael Wood <[email protected] <mailto:[email protected]>> wrote:

    On 14/09/15 16:09, Elliot Smith wrote:

        When ToasterTable data is loaded into the UI, a new entry is
        added to the browser history. This means that pressing the back
        button appears to have no effect, as you end up at the same page,
        possibly with slightly different data.

        Instead, use replaceState(), so that the browser history doesn't
        grow, but the page context still gets updated.

        [YOCTO #7660]

        Signed-off-by: Elliot Smith <[email protected]
        <mailto:[email protected]>>
        ---
          bitbake/lib/toaster/toastergui/static/js/table.js | 2 +-
          1 file changed, 1 insertion(+), 1 deletion(-)

        diff --git a/bitbake/lib/toaster/toastergui/static/js/table.js
        b/bitbake/lib/toaster/toastergui/static/js/table.js
        index f18034d..99b99a0 100644
        --- a/bitbake/lib/toaster/toastergui/static/js/table.js
        +++ b/bitbake/lib/toaster/toastergui/static/js/table.js
        @@ -49,7 +49,7 @@ function tableInit(ctx){
                  headers: { 'X-CSRFToken' : $.cookie('csrftoken')},
                  success: function(tableData) {
                    updateTable(tableData);
        -          window.history.pushState({
        +          window.history.replaceState({
                        tableData: tableData,
                        tableParams: tableParams
                    }, null, libtoaster.dumpsUrlParams(tableParams));


    If we replace state each time we load, we won't have a back stack
    to put the tableData into and subsequently pop it out of on the
    onpopstate event, could you also remove storing the tableData,
    tableParams in the browser and remove the window.onpopstate
    handler code as that won't ever fire now.


Thanks for the review.

I've added a commit which (I think) removes the code you're talking about. It's 0ea00338f688d4b90ab5794cd2bbb181db880d10 on the elliot/toaster/bad_caching-7660 branch. Could you please verify that I've understood your comment correctly? If I have, I'll resubmit the patches.

Thanks.
Elliot
--
Elliot Smith
Software Engineer
Intel Open Source Technology Centre

---------------------------------------------------------------------
Intel Corporation (UK) Limited
Registered No. 1134945 (England)
Registered Office: Pipers Way, Swindon SN3 1RJ
VAT No: 860 2173 47

This e-mail and any attachments may contain confidential material for
the sole use of the intended recipient(s). Any review or distribution
by others is strictly prohibited. If you are not the intended
recipient, please contact the sender and delete all copies.


Thanks.

Patches submitted upstream, with a minor fix to keeping the update of the url parameters in the replaceState.

Michael
--
_______________________________________________
toaster mailing list
[email protected]
https://lists.yoctoproject.org/listinfo/toaster

Reply via email to