Pilot: v1.2.0

New features


  • req — now the instance of Pilot.Request.
  • Added Pilot.utils
    • each(el/**Object|Array*/, fn/**Function*/[, thisArg/**Mixed*/])
    • extend(a/**Object*/, b/**Object*/)/**Object*/
    • qs.parse(queryString/**String*/)/**Object*/
    • qs.stringify(params/**Object*/)/**String*/
http://rubaxa.github.io/Pilot/

jQuery extension, add support `scrollstart` and `scrollend` events.


/**

 * @flags
 * $.isScrolled; // boolean
 *
 * @binding
 * $(window).bind('scrollstart scrollend', function (evt){
 *     if( evt.type == 'scrollstart' ){
 *         // logic
 *     }
 * });
 */
https://gist.github.com/RubaXa/5569075