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

Commit

Permalink
Selectmenu: Missing comma in variable declaration
Browse files Browse the repository at this point in the history
(cherry picked from commit 6220624)

Fixes gh-7405
  • Loading branch information
Gabriel Schulhof committed May 22, 2014
1 parent 0614979 commit 5445bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion demos/selectmenu-custom-filter/index.php
Expand Up @@ -19,7 +19,7 @@
// input field before the list to be used for a filter.
.on( "listviewcreate", "#filter-menu-menu,#title-filter-menu-menu", function( event ) {
var input,
list = $( event.target )
list = $( event.target ),
form = list.jqmData( "filter-form" );

// We store the generated form in a variable attached to the popup so we avoid creating a
Expand Down

0 comments on commit 5445bc4

Please sign in to comment.