~ubuntu-branches/ubuntu/precise/transmission/precise

« back to all changes in this revision

Viewing changes to web/javascript/jquery/jquery.transmenu.js

  • Committer: Bazaar Package Importer
  • Author(s): Leo Costela
  • Date: 2009-07-25 20:20:23 UTC
  • mfrom: (1.3.1 upstream)
  • mto: (2.1.19 sid)
  • mto: This revision was merged to the branch mainline in revision 54.
  • Revision ID: james.westby@ubuntu.com-20090725202023-9xmfycsfotr430nv
* debian/rules: patch before configure
* debian/patches: add patch to not build libevent, regardless of
  linking (really, really closes: #537868)
* debian/changelog: fix dates

Show diffs side-by-side

added added

removed removed

Lines of Context:
310
310
                        if ( transMenuSettings.arrow_char ) {
311
311
                                var arrow_markup = $("<span class='arrow'>" + transMenuSettings.arrow_char + '</span>');
312
312
                                // Mozilla float/position hack
313
 
                                if ($.browser.mozilla) {
 
313
                                if ($.browser.mozilla && +$.browser.version.replace(/\./g,'').slice(0,3) < 191) {
314
314
                                        arrow_markup.css('margin-top', '-13px');
315
315
                                }
316
316
                                $('div.inner div.outerbox', this).before(arrow_markup);