This is just some static backup of the original site, don't expect every link to work!

Changeset 1bac11


Ignore:
Timestamp:
Nov 6, 2009, 6:52:49 PM (13 years ago)
Author:
rene <rene@…>
Branches:
multiEdit, ng_0.6, ng_0.8, ng_0.9
Children:
9c2ab4
Parents:
78cd2b
Message:

adapted windows to support resizing

Location:
chrome/content/v_identity
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • chrome/content/v_identity/vI_context.xul

    r78cd2b r1bac11  
    5858            <menupopup>
    5959                <menuitem label="&vident.vI_Menu.Settings.label;"
    60                       oncommand="window.openDialog('chrome://v_identity/content/vI_prefDialogOpener.xul', '', 'chrome');" />
     60                      oncommand="window.open('chrome://v_identity/content/vI_prefDialogOpener.xul', '', 'chrome, dialog, resizable=yes');" />
    6161                <menuitem label="&vident.vI_Menu.DataEditor.label;"
    62                       oncommand="window.open('chrome://v_identity/content/vI_rdfDataTree.xul', '', 'chrome');" />
     62                      oncommand="window.open('chrome://v_identity/content/vI_rdfDataTree.xul', '', 'chrome, dialog, resizable=yes');" />
    6363            </menupopup>
    6464        </menu>
  • chrome/content/v_identity/vI_prefDialog.xul

    r78cd2b r1bac11  
    550550                    oncommand="vI_prefDialog.base.storageConstraint(this);" />
    551551                <spacer class="paragraph"/>
    552                 <button id="VIdent_identity.storage.openEditor" label="&vI_prefDialog.storage.openEditor;" oncommand="openDialog('chrome://v_identity/content/vI_rdfDataTree.xul', '', 'chrome,modal');" />
     552                <button id="VIdent_identity.storage.openEditor" label="&vI_prefDialog.storage.openEditor;" oncommand="openDialog('chrome://v_identity/content/vI_rdfDataTree.xul', '', 'chrome, dialog, resizable=yes');" />
    553553                </groupbox>
    554554            </tabpanel>
  • chrome/content/v_identity/vI_prefDialogOpener.xul

    r78cd2b r1bac11  
    4444    function openPrefDialog () {
    4545        var chromeURL=(vI_helper.olderVersion('SM', '2.0a1pre') || vI_helper.olderVersion('TB', '3.0a1pre'))?'preTB3.xul':'TB3.xul';
    46         window.openDialog('chrome://v_identity/content/vI_prefDialog_' + chromeURL, '', 'chrome');
     46        window.open('chrome://v_identity/content/vI_prefDialog_' + chromeURL, '', 'chrome, dialog, alwaysRaised, resizable=yes');
    4747    };
    4848    ]]>
  • chrome/content/v_identity/vI_smartIdentity.js

    r78cd2b r1bac11  
    391391                    + "(" + allIdentities.identityDataCollection[index].id.value + "," + allIdentities.identityDataCollection[index].smtp.value + ")\n");
    392392            }
    393             window.openDialog("chrome://v_identity/content/vI_smartReplyDialog.xul",0, // give the Dialog a unique id
     393            window.openDialog("chrome://v_identity/content/vI_smartReplyDialog.xul",0,
    394394                    "chrome, dialog, modal, alwaysRaised, resizable=yes",
    395395                     allIdentities,
  • chrome/content/v_identity/vI_storage.js

    r78cd2b r1bac11  
    252252    __askWarning : function(warning) {
    253253        var retVar = { returnValue: null };
    254         var answer = window.openDialog("chrome://v_identity/content/vI_Dialog.xul",0,
     254        var answer = window.openDialog("chrome://v_identity/content/vI_Dialog.xul","",
    255255                    "chrome, dialog, modal, alwaysRaised, resizable=yes",
    256256                     warning, retVar)
  • chrome/content/v_identity/vI_storageExtrasDataEditorOverlay.xul

    r78cd2b r1bac11  
    8181            </template>
    8282            <menupopup>
    83                 <menuitem name="charsetCustomize" accesskey="&charsetCustomize.accesskey;" label="&charsetCustomize.label;" oncommand="window.openDialog('chrome://global/content/customizeCharset.xul','PrefWindow', 'chrome,modal=yes,resizable=yes', 'mailedit')"/>
     83                <menuitem name="charsetCustomize" accesskey="&charsetCustomize.accesskey;" label="&charsetCustomize.label;" oncommand="window.openDialog('chrome://global/content/customizeCharset.xul','PrefWindow', 'chrome, dialog, modal, alwaysRaised, resizable=yes', 'mailedit')"/>
    8484                <menuseparator />
    8585            </menupopup>
  • chrome/content/v_identity/vI_upgradeOverlay.js

    r78cd2b r1bac11  
    2828        if (vI_rdfDatasource.rdfUpgradeRequired() || vI_rdfDatasource.extUpgradeRequired()) {
    2929            if (!vI_upgrade.quick_upgrade())
    30                 window.open("chrome://v_identity/content/vI_upgrade.xul",0, // give the Dialog a unique id
    31                 "chrome, dialog, alwaysRaised, resizable=yes").focus();
     30                window.open("chrome://v_identity/content/vI_upgrade.xul",0,
     31                    "chrome, dialog, modal, alwaysRaised, resizable=yes").focus();
    3232        }
    3333        else {
  • chrome/content/v_identity/v_identity.xul

    r78cd2b r1bac11  
    9090          <menuseparator id="vI_statusMenu_separator" />
    9191          <menuitem class="menuitem-iconic" label="&vident.vI_Menu.Settings.label;"
    92             oncommand="window.openDialog('chrome://v_identity/content/vI_prefDialogOpener.xul', '', 'chrome');" />
     92            oncommand="window.open('chrome://v_identity/content/vI_prefDialogOpener.xul', '', 'chrome, dialog, resizable=yes');" />
    9393          <menuitem class="menuitem-iconic" label="&vident.vI_Menu.DataEditor.label;"
    94             oncommand="window.open('chrome://v_identity/content/vI_rdfDataTree.xul', '', 'chrome');" />
     94            oncommand="window.open('chrome://v_identity/content/vI_rdfDataTree.xul', '', 'chrome, dialog, resizable=yes');" />
    9595      </popup>
    9696  </popupset>
Note: See TracChangeset for help on using the changeset viewer.