Skip to content
This repository was archived by the owner on Sep 4, 2019. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Actionbar Sample: Close panels when clicked
  • Loading branch information
Jason Scott committed Jan 22, 2013
commit c7ba15d44af93854b5cd63bf7eff5eace20a73f2
4 changes: 2 additions & 2 deletions kitchenSink/actionbar_sample.html
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ <h1>Page 2</h1>
});

//Handle overflow menu clicks
$(".bb10-panel li").bind("vclick", function() {
$(".bb10-panel").bind("vclick", function() {
//Close the panel
$(this).parents(".ui-panel").panel("close");
$(this).panel("close");
});

$("#left li").bind("vclick", function() {
Expand Down