Namespace.declare("org",
    class JQuery extends Thing {
        static start() {
            console.log(this.name+" is ready");
            //new Namespaces.org.JQuery();
        }
        static dependencies() {
            return [
                new IOR().init(this.controller.basePath + "dist/jquery.min.js")
                ];
        }
        constructor() {
            super();
            this.controller = UcpComponentSupport.lookup("Namespaces.org.JQuery").controller;
            this.controller.singleton = this;
        }

        init(controller) {
            return this;
        }

    }
);