Git Product home page Git Product logo

Comments (1)

Infocatcher avatar Infocatcher commented on July 24, 2024

To don't forget: following code updates add-ons list in real time:

        setTimeout(function() {
            var prefEvents = Application.prefs.get("extensions.addonsRecentUpdates.days").events;
            var delayedUpdate = 0;
            var prefListener = {
                handleEvent: function(e) {
                    clearTimeout(delayedUpdate);
                    delayedUpdate = setTimeout(function() {
                        if(gViewController.currentViewId != "addons://updates/recent")
                            return;
                        var updatesList = document.getElementById("updates-list");
                        var si = updatesList.selectedItem;
                        var addonId = si && si.getAttribute("value");
                        var sbo = updatesList.scrollBoxObject;
                        var x = {};
                        var y = {};
                        sbo.getPosition(x, y);
                        function restoreState(e) {
                            window.removeEventListener("ViewChanged", restoreState, false);
                            clearTimeout(watchdogTimer);
                            if(si && addonId) {
                                var nodes = updatesList.getElementsByAttribute("value", addonId);
                                if(nodes.length)
                                    updatesList.selectedItem = nodes[0];
                            }
                            setTimeout(function() {
                                sbo.scrollTo(x.value, y.value);
                            }, 0);
                        }
                        window.addEventListener("ViewChanged", restoreState, false);
                        var watchdogTimer = setTimeout(function() {
                            window.removeEventListener("ViewChanged", restoreState, false);
                        }, 1000);

                        gUpdatesView.show("recent", ++gViewController.currentViewRequest);
                    }, 350);
                }
            };
            prefEvents.addListener("change", prefListener);
            window.addEventListener("unload", function destroy(e) {
                window.removeEventListener(e.type, destroy, false);
                prefEvents.removeListener("change", prefListener);
            }, false);
        }, 0);

(but looks useless since we typically will use add-on page to change preference)

from addons_recent_updates.

Related Issues (8)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.