~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/javascript/branch.bugspeclinks.js

  • Committer: Launchpad Patch Queue Manager
  • Date: 2011-02-25 06:14:13 UTC
  • mfrom: (12435.2.14 lp-client-yui-module)
  • Revision ID: launchpad@pqm.canonical.com-20110225061413-ly79zwkk40kvk7jt
[r=flacoste][bug=724004][incr][no-qa] Make LP.client methods actually
        be a YUI module 'lp.client'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
 */
23
23
namespace.connect_branchlinks = function() {
24
24
 
25
 
    error_handler = new LP.client.ErrorHandler();
 
25
    error_handler = new Y.lp.client.ErrorHandler();
26
26
    error_handler.clearProgressUI = function() {
27
27
        destroy_temporary_spinner();
28
28
    };
223
223
 */
224
224
function set_up_lp_client() {
225
225
    if (lp_client === undefined) {
226
 
        lp_client = new LP.client.Launchpad();
 
226
        lp_client = new Y.lp.client.Launchpad();
227
227
    }
228
228
}
229
229
 
254
254
}
255
255
 
256
256
}, "0.1", {"requires": ["base", "lazr.anim", "lazr.formoverlay",
257
 
    "lp.client.plugins"]});
 
257
                        "lp.client", "lp.client.plugins"]});