Skip to content

Commit

Permalink
minor examples display tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboy committed Oct 7, 2009
1 parent c4ee7f8 commit addd338
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/deparam/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@
var params = $.deparam.querystring();

debug.log( 'not coerced', params );
$('#deparam_string').html( JSON.stringify( params, null, 2 ) );
$('#deparam_string').text( JSON.stringify( params, null, 2 ) );

// Values are coerced.
params = $.deparam.querystring( true );

debug.log( 'coerced', params );
$('#deparam_coerced').html( JSON.stringify( params, null, 2 ) );
$('#deparam_coerced').text( JSON.stringify( params, null, 2 ) );

// Highlight the current sample query string link
var qs = $.param.querystring();
Expand Down
1 change: 1 addition & 0 deletions examples/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -486,6 +486,7 @@ pre,
padding: 0 1px !important;
background: #fee0c5 !important;
border: 1px solid #C4884F !important;
_zoom: 1;
}

.syntaxhighlighter .toolbar {
Expand Down

0 comments on commit addd338

Please sign in to comment.