From 595a2371f2f9dc9b44d77f6ff9b0e8b2d4cd6252 Mon Sep 17 00:00:00 2001 From: Ghislain Seguin Date: Tue, 28 Jun 2011 22:17:41 -0700 Subject: [PATCH] Coding standards --- js/jquery.mobile.navbar.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/js/jquery.mobile.navbar.js b/js/jquery.mobile.navbar.js index c9be786f..3a4a3b64 100755 --- a/js/jquery.mobile.navbar.js +++ b/js/jquery.mobile.navbar.js @@ -9,7 +9,7 @@ $.widget( "mobile.navbar", $.mobile.widget, { options: { - iconpos: 'top', + iconpos: "top", grid: null }, @@ -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" );