This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
forked from Ericsson/exchangecalendar
-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#241 Input window usability can be improved
* Add window elements to grid for vertical centering. * Fix incorrect use of sentence dot in UI elements. * Simplify wording. * Make email address field scale with window. * Remove dead code. * Improve code formatting.
- Loading branch information
1 parent
8858002
commit c169a8c
Showing
6 changed files
with
32 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -88,10 +88,10 @@ | |
<textbox id="exchWebService_mailbox" | ||
required="true" | ||
oninput="tmpSettingsOverlay.exchWebServicesDoMailboxChanged(this);" | ||
placeholder="[email protected]" /> | ||
placeholder="[email protected]" | ||
flex="1" /> | ||
<label id="exchWebService_displayname" | ||
value="" | ||
flex="1" /> | ||
value="" /> | ||
</hbox> | ||
</row> | ||
<row align="center"> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,10 +14,10 @@ | |
* -- Exchange 2007/2010 Calendar and Tasks Provider. | ||
* -- For Thunderbird with the Lightning add-on. | ||
* | ||
* This work is a combination of the Storage calendar, part of the default Lightning add-on, and | ||
* This work is a combination of the Storage calendar, part of the default Lightning add-on, and | ||
* the "Exchange Data Provider for Lightning" add-on currently, october 2011, maintained by Simon Schubert. | ||
* Primarily made because the "Exchange Data Provider for Lightning" add-on is a continuation | ||
* of old code and this one is build up from the ground. It still uses some parts from the | ||
* Primarily made because the "Exchange Data Provider for Lightning" add-on is a continuation | ||
* of old code and this one is build up from the ground. It still uses some parts from the | ||
* "Exchange Data Provider for Lightning" project. | ||
* | ||
* Author: Michel Verbraak ([email protected]) | ||
|
@@ -37,21 +37,10 @@ | |
var Cc = Components.classes; | ||
var Ci = Components.interfaces; | ||
|
||
|
||
|
||
ChromeUtils.import("resource://calendar/modules/calUtils.jsm"); | ||
ChromeUtils.import("resource://exchangecommon/erGetUserOofSettings.js"); | ||
ChromeUtils.import("resource://exchangecommon/erSetUserOofSettings.js"); | ||
|
||
//ChromeUtils.import("resource://exchangecommon/ecFunctions.js"); | ||
|
||
//if (! exchWebService) var exchWebService = {}; | ||
|
||
/*if (! this.cal) { | ||
ChromeUtils.import("resource://calendar/modules/calUtils.jsm", exchWebService); | ||
} | ||
*/ | ||
|
||
function exchOOFSettings(aDocument, aWindow) { | ||
this._document = aDocument; | ||
this._window = aWindow; | ||
|
@@ -62,8 +51,6 @@ function exchOOFSettings(aDocument, aWindow) { | |
|
||
exchOOFSettings.prototype = { | ||
|
||
//exchWebService.oofSettings = { | ||
|
||
calPrefs: null, | ||
intOofSettings: {}, | ||
|
||
|
@@ -200,10 +187,8 @@ exchOOFSettings.prototype = { | |
var externalReply = this.intOofSettings.externalReply; | ||
|
||
internalReply = "<html>" + this.internalEditorElement.content + "</html>"; | ||
|
||
externalReply = "<html>" + this.externalEditorElement.content + "</html>"; | ||
|
||
|
||
var self = this; | ||
var tmpObject = new erSetUserOofSettingsRequest({ | ||
user: this.globalFunctions.safeGetCharPref(this.calPrefs, "ecDomain", "null") + "\\" + this.globalFunctions.safeGetCharPref(this.calPrefs, "ecUser", "null"), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters