Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
Coding standards
Browse files Browse the repository at this point in the history
  • Loading branch information
gseguin committed Jun 29, 2011
1 parent 547a82c commit 595a237
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions js/jquery.mobile.navbar.js
Expand Up @@ -9,7 +9,7 @@

$.widget( "mobile.navbar", $.mobile.widget, {
options: {
iconpos: 'top',
iconpos: "top",
grid: null
},

Expand All @@ -20,10 +20,10 @@ $.widget( "mobile.navbar", $.mobile.widget, {
iconpos = $navbtns.filter( ":jqmData(icon)" ).length ?
this.options.iconpos : undefined;

$navbar.addClass('ui-navbar')
.attr("role","navigation")
.find("ul")
.grid({grid: this.options.grid });
$navbar.addClass( "ui-navbar ")
.attr( "role","navigation" )
.find( "ul" )
.grid({ grid: this.options.grid });

if ( !iconpos ) {
$navbar.addClass( "ui-navbar-noicons" );
Expand Down

0 comments on commit 595a237

Please sign in to comment.