1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-14 23:25:45 +01:00

Normalise fooID => fooId.

This commit is contained in:
Doug Kearns
2009-08-12 22:14:02 +10:00
parent f9436047b1
commit 662bf53d5f
6 changed files with 16 additions and 16 deletions

View File

@@ -43,7 +43,7 @@ function Buffer() //{{{
/////////////////////////////////////////////////////////////////////////////{{{
// FIXME: This doesn't belong here.
let fontSize = util.computedStyle(document.getElementById(config.mainWindowID)).fontSize;
let fontSize = util.computedStyle(document.getElementById(config.mainWindowId)).fontSize;
styles.registerSheet("chrome://liberator/skin/liberator.css");
let error = styles.addSheet(true, "font-size", "chrome://liberator/content/buffer.xhtml",

View File

@@ -94,7 +94,7 @@ const configbase = { //{{{
/**
* @property {string} The ID of the application's main XUL window.
*/
mainWindowID: document.documentElement.id,
mainWindowId: document.documentElement.id,
/**
* @property {[[]]} An array of application specific mode specifications.

View File

@@ -352,16 +352,16 @@ function Hints() //{{{
*
* By default highlights it green instead of yellow.
*
* @param {number} newID The hint to make active.
* @param {number} oldID The currently active hint.
* @param {number} newId The hint to make active.
* @param {number} oldId The currently active hint.
*/
function showActiveHint(newID, oldID)
function showActiveHint(newId, oldId)
{
let oldElem = validHints[oldID - 1];
let oldElem = validHints[oldId - 1];
if (oldElem)
setClass(oldElem, false);
let newElem = validHints[newID - 1];
let newElem = validHints[newId - 1];
if (newElem)
setClass(newElem, true);
}
@@ -986,7 +986,7 @@ function Hints() //{{{
if (hintNumber == 0)
hintNumber = 1;
let oldID = hintNumber;
let oldId = hintNumber;
if (key == "<Tab>")
{
if (++hintNumber > validHints.length)
@@ -997,7 +997,7 @@ function Hints() //{{{
if (--hintNumber < 1)
hintNumber = validHints.length;
}
showActiveHint(hintNumber, oldID);
showActiveHint(hintNumber, oldId);
updateStatusline();
return;