Skip to content

Commit

Permalink
Made comma style consistent in example
Browse files Browse the repository at this point in the history
  • Loading branch information
Nathan Long committed Feb 3, 2011
1 parent ecdb2d6 commit b98fd0f
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions examples/index.html
Expand Up @@ -15,12 +15,12 @@


// With some options // With some options
$('#panel2').persistentPanel({ $('#panel2').persistentPanel({
openFunction: function(duration) {$(this).fadeIn(duration);} openFunction: function(duration) {$(this).fadeIn(duration);},
,toggler: '#panelToggler2' toggler: '#panelToggler2',
,duration: 1000 duration: 1000,
,togglerContentsOpen: '&#x2191' togglerContentsOpen: '&#x2191',
,togglerContentsClosed: '&#x2193' togglerContentsClosed: '&#x2193',
,cookieName: 'panelicous' cookieName: 'panelicous'


// You can still chain other methods // You can still chain other methods
}).css('background-color','red'); }).css('background-color','red');
Expand Down Expand Up @@ -78,14 +78,14 @@ <h2>Woo, Panel!</h2>
<div class="code"> <div class="code">
// With some options // With some options
$('#panel2').persistentPanel({ $('#panel2').persistentPanel({
openFunction: function(duration) {$(this).fadeIn(duration);} openFunction: function(duration) {$(this).fadeIn(duration);},
,toggler: '#panelToggler2' toggler: '#panelToggler2',
,duration: 1000 duration: 1000,
,togglerContentsOpen: '&#x2191' togglerContentsOpen: '&amp;&#35;x2191',
,togglerContentsClosed: '&#x2193' togglerContentsClosed: '&amp;&#35;x2193',
,cookieName: 'panelicous' cookieName: 'panelicous'


// You can still chain other methods // You can still chain other methods
}).css('background-color','red'); }).css('background-color','red');
</div> </div>


Expand Down

0 comments on commit b98fd0f

Please sign in to comment.