svn commit: r932964 - /ofbiz/trunk/framework/images/webapp/images/fieldlookup.js

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r932964 - /ofbiz/trunk/framework/images/webapp/images/fieldlookup.js

jleroux@apache.org
Author: jleroux
Date: Sun Apr 11 18:04:22 2010
New Revision: 932964

URL: http://svn.apache.org/viewvc?rev=932964&view=rev
Log:
Fix 2 comments,I commit because while I make some other changes during my tests I have to get this comments right again when reverting.

Modified:
    ofbiz/trunk/framework/images/webapp/images/fieldlookup.js

Modified: ofbiz/trunk/framework/images/webapp/images/fieldlookup.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/fieldlookup.js?rev=932964&r1=932963&r2=932964&view=diff
==============================================================================
--- ofbiz/trunk/framework/images/webapp/images/fieldlookup.js (original)
+++ ofbiz/trunk/framework/images/webapp/images/fieldlookup.js Sun Apr 11 18:04:22 2010
@@ -154,7 +154,7 @@ var FieldLookupCounter = Class.create({
     },
     
     setReference: function (key, ref) {
-        //if key doesn't exsist in the array and
+        //if key doesn't exist in the array and
         var bool = true;
         for (item in this.refArr) {
             if (item == key) {
@@ -172,7 +172,7 @@ var FieldLookupCounter = Class.create({
     },
     
     getReference: function (key) {
-        //wenn key nicht existiert gib null zur?ck?
+        // when key does not exist return null?
         return this.refArr[key] != null ? this.refArr[key] : null;
     },