This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery(function($) { | |
var $current_dialog; | |
var $current_trigger; | |
var open_dialog = function ($dialog, $trigger) { | |
// Close any open dialogs except main nav, which stays open | |
// behind other dialogs | |
if ($current_dialog && !$current_dialog.is('#main-navigation')) { | |
close_dialog(); | |
} |