2009-10-16 00:54:20 -06:00
|
|
|
/**
|
|
|
|
|
* Initialize jQuery UI and Gallery Plugins
|
2009-10-18 10:32:08 -06:00
|
|
|
* @todo Move ui-corner-all assignments to theme admin views
|
2009-10-16 00:54:20 -06:00
|
|
|
*/
|
|
|
|
|
|
2008-12-19 02:02:38 +00:00
|
|
|
$(document).ready(function(){
|
2009-10-16 00:54:20 -06:00
|
|
|
|
2009-05-26 03:59:35 +00:00
|
|
|
// Initialize Superfish menus
|
2009-10-16 00:54:20 -06:00
|
|
|
$("#g-site-admin-menu .g-menu").hide().addClass("sf-menu");
|
|
|
|
|
$("#g-site-admin-menu .g-menu").superfish({
|
2008-12-19 02:02:38 +00:00
|
|
|
delay: 500,
|
|
|
|
|
animation: {
|
2009-05-09 17:17:17 +00:00
|
|
|
opacity: "show",
|
|
|
|
|
height: "show"
|
2008-12-19 02:02:38 +00:00
|
|
|
},
|
2009-10-16 00:54:20 -06:00
|
|
|
pathClass: "g-selected",
|
2009-05-09 17:17:17 +00:00
|
|
|
speed: "fast"
|
2009-10-16 00:54:20 -06:00
|
|
|
}).show();
|
2009-01-04 08:47:08 +00:00
|
|
|
|
2009-05-26 03:59:35 +00:00
|
|
|
// Initialize status message effects
|
2009-10-04 00:27:22 -06:00
|
|
|
$("#g-action-status li").gallery_show_message();
|
2009-05-26 03:59:35 +00:00
|
|
|
|
|
|
|
|
// Initialize modal dialogs
|
2009-10-04 00:27:22 -06:00
|
|
|
$(".g-dialog-link").gallery_dialog();
|
2009-01-16 07:22:30 +00:00
|
|
|
|
2009-10-18 10:32:08 -06:00
|
|
|
// Initialize short forms
|
|
|
|
|
$(".g-short-form").gallery_short_form();
|
|
|
|
|
|
2009-08-10 23:05:05 -07:00
|
|
|
// Initialize ajax links
|
2009-10-04 00:27:22 -06:00
|
|
|
$(".g-ajax-link").gallery_ajax();
|
2009-08-10 23:05:05 -07:00
|
|
|
|
2009-05-26 03:59:35 +00:00
|
|
|
// Initialize panels
|
2009-10-04 00:27:22 -06:00
|
|
|
$(".g-panel-link").gallery_panel();
|
2009-05-26 03:59:35 +00:00
|
|
|
|
2009-10-04 00:27:22 -06:00
|
|
|
if ($("#g-photo-stream").length) {
|
2009-02-15 22:36:51 +00:00
|
|
|
// Vertically align thumbs in photostream
|
2009-10-04 00:27:22 -06:00
|
|
|
$(".g-item").gallery_valign();
|
2009-02-15 22:36:51 +00:00
|
|
|
}
|
|
|
|
|
|
2009-02-23 05:14:05 +00:00
|
|
|
// Apply jQuery UI button css to submit inputs
|
2009-10-04 00:27:22 -06:00
|
|
|
$("input[type=submit]:not(.g-short-form input)").addClass("ui-state-default ui-corner-all");
|
2009-02-23 05:14:05 +00:00
|
|
|
|
|
|
|
|
// Round view menu buttons
|
2009-10-04 00:27:22 -06:00
|
|
|
if ($("#g-admin-comments-menu").length) {
|
2009-10-16 00:54:20 -06:00
|
|
|
$("#g-admin-comments-menu ul").removeClass("g-menu");
|
2009-10-04 00:27:22 -06:00
|
|
|
$("#g-admin-comments-menu").addClass("g-buttonset");
|
|
|
|
|
$("#g-admin-comments-menu a").addClass("g-button ui-state-default");
|
|
|
|
|
$("#g-admin-comments-menu ul li:first a").addClass("ui-corner-left");
|
|
|
|
|
$("#g-admin-comments-menu ul li:last a").addClass("ui-corner-right");
|
2009-02-15 22:36:51 +00:00
|
|
|
}
|
|
|
|
|
|
2009-01-25 06:55:24 +00:00
|
|
|
// Round corners
|
2009-10-04 00:27:22 -06:00
|
|
|
$(".g-selected").addClass("ui-corner-all");
|
|
|
|
|
$(".g-available .g-block").addClass("ui-corner-all");
|
|
|
|
|
$(".g-unavailable").addClass("ui-corner-all");
|
2009-01-25 06:55:24 +00:00
|
|
|
|
2009-10-18 10:32:08 -06:00
|
|
|
// Initialize button hover effect
|
|
|
|
|
$.fn.gallery_hover_init();
|
|
|
|
|
|
2009-01-24 20:06:13 +00:00
|
|
|
});
|