| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
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);
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |