~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/app/javascript/inlinehelp/inlinehelp.js

  • Committer: Rick Harding
  • Date: 2012-01-06 12:34:37 UTC
  • mto: This revision was merged to the branch mainline in revision 14647.
  • Revision ID: rick.harding@canonical.com-20120106123437-ebd5ltlnjgph600x
Update user of inline help that bypassed the usual init methods

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
        var overlay = new module.InlineHelpOverlay({
31
31
            'contentUrl': target_link.get('href'),
32
32
            'centered': true,
33
 
            'constrain': true
 
33
            'constrain': true,
 
34
            // we need our help overlay to have a higher zindex than usual
 
35
            // overlays so that any help on them appear above them
 
36
            'zIndex': 1050
34
37
        });
35
38
        overlay.render();
36
39
    };