~ubuntu-branches/ubuntu/natty/lightning-extension/natty-security

« back to all changes in this revision

Viewing changes to calendar/base/content/calendar-item-editing.js

  • Committer: Package Import Robot
  • Author(s): Chris Coulson, Chris Coulson, Ben Collins
  • Date: 2012-07-16 14:19:14 UTC
  • mfrom: (1.1.21)
  • Revision ID: package-import@ubuntu.com-20120716141914-mynrjxhu00lsv01h
Tags: 1.6+build1-0ubuntu0.11.04.2
* New upstream stable release (CALENDAR_1_6_BUILD1) (LP: #1024564)

[ Chris Coulson <chris.coulson@canonical.com> ]
* Fix LP: #995054 - Ensure the /usr/lib/thunderbird/extensions symlink
  exists on upgrade, which may not be the case when upgrading from a really
  old lightning version
  - add debian/lightning-extension.postinst

[ Ben Collins <bcollins@ubuntu.com> ]
* Fix LP: #1025387 - FTBFS: powerpc build fails
  - add debian/patches/fix-dtoa-build-on-ppc.patch
  - update debian/patches/series

Show diffs side-by-side

added added

removed removed

Lines of Context:
364
364
        url = "chrome://calendar/content/calendar-summary-dialog.xul";
365
365
    }
366
366
 
 
367
    // reminder: event dialog should not be modal (cf bug 122671)
367
368
    var features;
 
369
    // keyword "dependent" should not be used (cf bug 752206)
368
370
    if (Services.appinfo.OS == "WINNT") {
369
 
        features = "chrome,titlebar,resizable,dependent";
 
371
        features = "chrome,titlebar,resizable";
370
372
    } else if (Services.appinfo.OS == "Darwin") {
371
373
        features = "chrome,titlebar,resizable,minimizable=no";
372
374
    } else {
373
375
        // All other targets, mostly Linux flavors using gnome.
374
 
        features = "chrome,titlebar,resizable,dependent,minimizable=no,dialog=no";
 
376
        features = "chrome,titlebar,resizable,minimizable=no,dialog=no";
375
377
    }
376
378
 
377
379
    openDialog(url, "_blank", features, args);