diff options
author | Klaus Hartl <klaus.hartl@googlemail.com> | 2009-02-13 22:18:35 +0000 |
---|---|---|
committer | Klaus Hartl <klaus.hartl@googlemail.com> | 2009-02-13 22:18:35 +0000 |
commit | 82d7c67bd345fe5e47ff9e9f28656daab7acf776 (patch) | |
tree | d7887b3710701c0ed38baeda8e022db0f3d5e51e /demos/slider/side-scroll.html | |
parent | 64b66a4d818ebecc928fcff2d2639a5a44af84a2 (diff) | |
download | jquery-ui-82d7c67bd345fe5e47ff9e9f28656daab7acf776.tar.gz jquery-ui-82d7c67bd345fe5e47ff9e9f28656daab7acf776.zip |
fixed an incorrect slash and a self closing span
Diffstat (limited to 'demos/slider/side-scroll.html')
-rw-r--r-- | demos/slider/side-scroll.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/slider/side-scroll.html b/demos/slider/side-scroll.html index 0900f0d65..a1911806b 100644 --- a/demos/slider/side-scroll.html +++ b/demos/slider/side-scroll.html @@ -41,8 +41,8 @@ .mouseup(function(){ scrollbar.width( '100%' ); }) - .append('<span class="ui-icon ui-icon-grip-dotted-vertical"/>') - .wrap('<div class="ui-handle-helper-parent" /></div>').parent(); + .append('<span class="ui-icon ui-icon-grip-dotted-vertical"></span>') + .wrap('<div class="ui-handle-helper-parent"></div>').parent(); //change overflow to hidden now that slider handles the scrolling scrollPane.css('overflow','hidden'); |