1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-04-07 08:13:44 +02: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

@@ -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);
}
}