[ Index ]

PHP Cross Reference of Drupal 6 (yi-drupal)

title

Body

[close]

/sites/all/libraries/jquery.ui/tests/unit/datepicker/ -> datepicker_tickets.js (source)

   1  /*

   2   * datepicker_tickets.js

   3   */
   4  (function($) {
   5  
   6  module("datepicker: tickets");
   7  
   8  test('#4055: onclick events contain references to "jQuery"', function() {
   9      // no assertions, if the test fails, there will be an error

  10      
  11      var _jQuery = jQuery;
  12      jQuery = null;
  13      
  14      $('<div/>').appendTo('body').datepicker()
  15      // the third weekend day always exists

  16      .find('tbody .ui-datepicker-week-end:eq(3)').click().end()
  17      .datepicker('destroy');
  18      
  19      jQuery = _jQuery;
  20  });
  21  
  22  })(jQuery);


Generated: Mon Jul 9 18:01:44 2012 Cross-referenced by PHPXref 0.7