fix usage info
[HTML5TV.git] / www / js / contentPanel.js
1 $(document).ready(function(){
2             
3         $("#hideIcon, #hideX").click(function () {
4                 $("#contentPanelContainer").hide("slide", { direction: "right"}, 300);
5                 setTimeout(function() {$("#showIcon").show();}, 300);
6         });
7         
8         $("#showIcon").click(function () {
9         //      $("#videoElementWarning").hide();
10                 $("#showIcon").hide();
11                 $("#contentPanelContainer").show("slide", { direction: "right"}, 300);
12         });
13
14 });
15