pagelayout: fix jslint error
authorMinkyu Kang <mk7.kang@samsung.com>
Wed, 23 Jan 2013 08:11:19 +0000 (17:11 +0900)
committerMinkyu Kang <mk7.kang@samsung.com>
Wed, 23 Jan 2013 11:05:21 +0000 (20:05 +0900)
commit446728909e713ff30198a01808fd5d011afb6466
tree1c6fec0722558ae21a8d45b19142a3953eb371ac
parent18d4aebbcb515bee527547f83523f7e83f6e4840
pagelayout: fix jslint error

1 Expected '(' at column 21, not column 25.
( ( platform.indexOf( "iPhone" ) > -1 || platform.indexOf( "iPad" ) > -1  || platform.indexOf( "iPod" ) > -1 ) && wkversion && wkversion < 534 ) // Line 59, Pos 25
2 Unexpected 'in'. Compare with undefined, or use the hasOwnProperty method instead.
( "palmGetResource" in window && wkversion && wkversion < 534 ) // Line 73, Pos 45
3 Expected exactly one space between 'function' and '('.
window.addEventListener( "softkeyboardchange", function( e ) { // Line 252, Pos 68
4 'imestatus' was used before it was defined.
if ( this.options.fullscreen && imestatus ) { return; } // Line 310, Pos 45
5 The '&&' subexpression should be wrapped in parens.
( this.options.transition && this.options.transition !== "none" && // Line 371, Pos 81
6 Move the invocation into the parens that contain the function.
})( jQuery ); // Line 435, Pos 3

Change-Id: Ib49ea3b09cd011c29361fb5d84addd54b634b58f
src/widgets/pagelayout/js/jquery.mobile.tizen.pagelayout.js