~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/javascript/lp-links.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:
67
67
        // Get the final json to send
68
68
        var json_link_info = Y.JSON.stringify(links_to_check);
69
69
        var qs = '';
70
 
        qs = LP.client.append_qs(qs, 'link_hrefs', json_link_info);
 
70
        qs = Y.lp.client.append_qs(qs, 'link_hrefs', json_link_info);
71
71
 
72
72
        var config = {
73
73
            on: {
99
99
        Y.io(uri, y_config);
100
100
    };
101
101
 
102
 
}, "0.1", {"requires": [
103
 
    "base", "node", "io", "dom", "json"
104
 
    ]});
 
102
}, "0.1", {"requires": ["base", "node", "io", "dom", "json", "lp.client"]});
105
103