~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/javascript/structural-subscription.js

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 17:11:54 UTC
  • mfrom: (14565.3.17 inline_help_907443)
  • Revision ID: launchpad@pqm.canonical.com-20120106171154-fjgapb91cd49zzih
[r=deryck][bug=907443] Port the inlinehelp javascript from mochikit
        to YUI in lp.app.inlinehelp.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1133
1133
    Y.one('#subscription-overlay-title')
1134
1134
        .set('text', 'Edit subscription for '+title+' bugs');
1135
1135
 
1136
 
    // We need to initialize the help links.  They may have already been
1137
 
    // initialized except for the ones we added, so setupHelpTrigger
1138
 
    // is idempotent.  Notice that this is old MochiKit code.
1139
 
    forEach(findHelpLinks(), setupHelpTrigger);
 
1136
    // We need to initialize the help links.
 
1137
    Y.lp.app.inlinehelp.init_help();
1140
1138
    namespace._add_subscription_overlay.show();
1141
1139
}
1142
1140
 
1817
1815
    var save_subscription = make_add_subscription_handler(success_callback);
1818
1816
    create_overlay(config.content_box, overlay_id, submit_button,
1819
1817
                   save_subscription, success_callback);
1820
 
    // We need to initialize the help links.  They may have already been
1821
 
    // initialized except for the ones we added, so setupHelpTrigger
1822
 
    // is idempotent.  Notice that this is old MochiKit code.
1823
 
    forEach(findHelpLinks(), setupHelpTrigger);
 
1818
    // We need to initialize the help links.
 
1819
    Y.lp.app.inlinehelp.init_help();
1824
1820
    namespace._add_subscription_overlay.show();
1825
1821
    return overlay_id;
1826
1822
}
1870
1866
 
1871
1867
}, '0.1', {requires: [
1872
1868
    'dom', 'node', 'lp.anim', 'lazr.formoverlay', 'lazr.overlay',
1873
 
    'lazr.effects', 'lp.app.errors', 'lp.client', 'gallery-accordion'
 
1869
    'lazr.effects', 'lp.app.errors', 'lp.client', 'gallery-accordion', 'lp.app.inlinehelp'
1874
1870
]});