mirror of
https://github.com/Pathduck/gallery3.git
synced 2026-05-20 19:39:16 -04:00
19 lines
298 B
JavaScript
19 lines
298 B
JavaScript
/**
|
|
* Apply jQuery UI components
|
|
*
|
|
* @todo Write helpers to grab all jQuery UI components by class and initialize
|
|
*/
|
|
|
|
$(function(){
|
|
|
|
//accordion
|
|
$('#gSettingsGroup-1').accordion({
|
|
header: ".ui-accordion-header",
|
|
clearStyle: true
|
|
});
|
|
|
|
//tabs
|
|
$('#gSettings ul').tabs();
|
|
|
|
});
|