diff options
author | Richard Worth <rdworth@gmail.com> | 2009-01-24 11:51:12 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2009-01-24 11:51:12 +0000 |
commit | 9d0f4279ae6f600d3d6077a7863a8d3dcc6056d1 (patch) | |
tree | af1667f889aa88af382fa87596dfbea6509a883b /tests/static/static.js | |
parent | 2a49054ffe38594502c8faf8cea72bf1f3d3d22f (diff) | |
download | jquery-ui-9d0f4279ae6f600d3d6077a7863a8d3dcc6056d1.tar.gz jquery-ui-9d0f4279ae6f600d3d6077a7863a8d3dcc6056d1.zip |
tests static: Added default tests
Diffstat (limited to 'tests/static/static.js')
-rw-r--r-- | tests/static/static.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/static/static.js b/tests/static/static.js new file mode 100644 index 000000000..1c29079ef --- /dev/null +++ b/tests/static/static.js @@ -0,0 +1,9 @@ +/* static_helpers.js + */ +$(function(){ + //add hover states on the static widgets + $('.ui-state-default:not(.ui-state-disabled, .ui-slider-range, .ui-progressbar-value), a.ui-datepicker-next, a.ui-datepicker-prev, .ui-dialog-titlebar-close').hover( + function(){ $(this).addClass('ui-state-hover'); }, + function(){ $(this).removeClass('ui-state-hover'); } + ); +}); |