1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-03-23 09:23:33 +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

@@ -49,7 +49,7 @@ const config = { //{{{
get isPlayerWindow() SBGetBrowser().mCurrentTab == SBGetBrowser().mediaTab,
// focusContent() focuses this widget gSongbirdWindowController takes care of the focus.
get visualbellWindow() document.getElementById(this.mainWindowID),
get visualbellWindow() document.getElementById(this.mainWindowId),
styleableChrome: "chrome://gonzo/content/xul/mainplayer.xul",

View File

@@ -754,12 +754,12 @@ function Player() // {{{
while (propEnumerator.hasMore())
{
let propertyID = propEnumerator.getNext();
let propertyId = propEnumerator.getNext();
if (propManager.getPropertyInfo(propertyID).userViewable)
if (propManager.getPropertyInfo(propertyId).userViewable)
{
liberator.dump("PropertyID - "+propManager.getPropertyInfo(propertyID).id);
properties.push(propManager.getPropertyInfo(propertyID).displayName);
//liberator.dump("propertyId - " + propManager.getPropertyInfo(propertyId).id);
properties.push(propManager.getPropertyInfo(propertyId).displayName);
}
}