Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

jQuery 1.4.2 VSDoc

Where can I get the VSDoc for jQuery 1.4.2?

like image 778
benpage Avatar asked Feb 24 '10 02:02

benpage


3 Answers

The adventurous can add the following lines starting at 2949:

delegate: function( selector, types, data, fn ) { /// <summary> ///   Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements. See also "live". /// </summary> /// <param name="selector" type="String"> ///     An expression to search with. /// </param> /// <param name="types" type="String"> ///     A string containing a JavaScript event type, such as "click" or "keydown". /// </param> /// <param name="data" type="Object"> ///     A map of data that will be passed to the event handler. /// </param> /// <param name="fn" type="Function"> ///     A function to execute at the time the event is triggered. /// </param>     return this.live( types, data, fn, selector ); }, undelegate: function( selector, types, fn ) { /// <summary> ///   Remove a handler from the event for all elements which match the current selector, now or in the future, based upon a specific set of root elements. See also "die". /// </summary> /// <param name="selector" type="String"> ///     An expression to search with. /// </param> /// <param name="types" type="String"> ///     A string containing a JavaScript event type, such as "click" or "keydown". /// </param> /// <param name="data" type="Object"> ///     A map of data that will be passed to the event handler. /// </param> /// <param name="fn" type="Function"> ///     A function to execute at the time the event is triggered. /// </param>     if ( arguments.length === 0 ) {             return this.unbind( "live" );      } else {         return this.die( types, null, fn, selector );     } }, 

That documentation is pretty much ripped from jQuery web pages and from current definitions of "live" and "die", but feel free to adjust as you see fit.

Also, at line 224:

// The current version of jQuery being used     jquery: "1.4.2", 
like image 128
Herb Avatar answered Sep 23 '22 13:09

Herb


You always get it from http://docs.jquery.com/Downloading_jQuery - if it's not there yet, it's not available yet. v1.4.1 exists - see screenshot - but 1.4.2 isn't ready yet.

alt text

like image 38
marc_s Avatar answered Sep 21 '22 13:09

marc_s


Just a note on Herb's answer. Line 2940, for me anyway, was in the middle of the 'trigger' method. I inserted the code after 2949. Also, since it took me about 45 minutes to figure out why the comments weren't working for those two new routines - the "summary" tags have one too many 'm's in them!

Here's the corrected version:

        delegate: function(selector, types, data, fn) {
    /// <summary>
    ///     Attach a handler to one or more events for all elements that match the selector, now or in the future, based on a specific set of root elements. See also "live".
    /// </summary>
    /// <param name="types" type="String">
    ///     A string containing a JavaScript event type, such as "click" or "keydown".
    /// </param>
    /// <param name="data" type="Object">
    ///     A map of data that will be passed to the event handler.
    /// </param>
    /// <param name="fn" type="Function">
    ///     A function to execute at the time the event is triggered.
    /// </param>
    /// <param name="selector" type="String">
    ///     An expression to search with.
    /// </param>

        return this.live(types, data, fn, selector);
    },

    undelegate: function(selector, types, fn) {
    /// <summary>
    ///     Remove a handler from the event for all elements which match the current selector, now or in the future, based upon a specific set of root elements. See also "die".
    /// </summary>
    /// <param name="selector" type="String">
    ///     An expression to search with.
    /// </param>
    /// <param name="types" type="String">
    ///     A string containing a JavaScript event type, such as "click" or "keydown".
    /// </param>
    /// <param name="fn" type="Function">
    ///     A function to execute at the time the event is triggered.
    /// </param>
        if (arguments.length === 0) {
            return this.unbind("live");

        } else {
            return this.die(types, null, fn, selector);
        }
    },
like image 43
John T Avatar answered Sep 23 '22 13:09

John T