Popup: Rename _close to close and use it when selecting something within a popup.

This commit is contained in:
Jörn Zaefferer 2011-05-04 11:14:32 +02:00
parent bba4cb2be6
commit b96126b398
3 changed files with 12 additions and 8 deletions

View File

@ -24,8 +24,12 @@
});
$(".set").buttonset();
// TODO hide the tooltip when clicking the button
$("ul").menu().popup({
$("ul").menu({
select: function() {
// would also execute some other action here
$(this).popup("close");
}
}).popup({
trigger: $(".menu")
});

View File

@ -25,7 +25,7 @@
var selected = {
select: function( event, ui ) {
$( "<div/>" ).text( "Selected: " + ui.item.text() ).appendTo( "#log" );
$(this).hide();
$(this).popup("close");
}
};

View File

@ -34,7 +34,7 @@ $.widget( "ui.popup", {
this.element
.addClass("ui-popup")
this._close();
this.close();
this._bind(this.options.trigger, {
click: function( event ) {
@ -53,7 +53,7 @@ $.widget( "ui.popup", {
this._bind(this.element, {
// TODO also triggered when open and clicking the trigger again
// figure out how to close in that case, while still closing on regular blur
//blur: "_close"
//blur: "close"
});
this._bind({
@ -61,7 +61,7 @@ $.widget( "ui.popup", {
// bind to document instead?
keyup: function( event ) {
if (event.keyCode == $.ui.keyCode.ESCAPE && this.element.is( ":visible" )) {
this._close( event );
this.close( event );
this.options.trigger.focus();
}
}
@ -70,7 +70,7 @@ $.widget( "ui.popup", {
this._bind(document, {
click: function( event ) {
if (this.open && !$(event.target).closest(".ui-popup").length) {
this._close( event );
this.close( event );
}
}
})
@ -114,7 +114,7 @@ $.widget( "ui.popup", {
this._trigger( "open", event );
},
_close: function( event ) {
close: function( event ) {
this.element
.hide()
.attr( "aria-hidden", true )