Changeset 11112

Show
Ignore:
Timestamp:
10/25/07 12:08:56 (13 months ago)
Author:
alex
Message:

usage -> examples. Refs #4820

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dojo/trunk/_base/lang.js

    r10659 r11112  
    1010dojo.isArray = function(/*anything*/ it){ 
    1111        // summary: Return true if it is an Array 
    12         return it && it instanceof Array || typeof it == "array" || 
    13                 (dojo.NodeList && it instanceof dojo.NodeList); // Boolean 
     12        return it && it instanceof Array || typeof it == "array"; // Boolean 
    1413} 
    1514 
     
    134133        //              A function to be hitched to scope, or the name of the method in 
    135134        //              scope to be hitched. 
    136         // usage: 
     135        // examples: 
    137136        //              dojo.hitch(foo, "bar")(); // runs foo.bar() in the scope of foo 
    138137        //              dojo.hitch(foo, myFunction); // returns a function that runs myFunction in the scope of foo