mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-11 02:26:56 +01:00
45 lines
1005 B
JavaScript
45 lines
1005 B
JavaScript
/**
|
|
* jQuery Yii plugin file.
|
|
*
|
|
* @author Qiang Xue <qiang.xue@gmail.com>
|
|
* @link http://www.yiiframework.com/
|
|
* @copyright Copyright © 2008 Yii Software LLC
|
|
* @license http://www.yiiframework.com/license/
|
|
* @version $Id$
|
|
*/
|
|
|
|
;(function($) {
|
|
|
|
$.extend($.fn, {
|
|
yiitab: function() {
|
|
|
|
function activate(id) {
|
|
var $tab=$(id);
|
|
var $container=$tab.parent();
|
|
$container.find('>ul a').removeClass('active');
|
|
$container.find('>ul a[href="'+id+'"]').addClass('active');
|
|
$container.children('div').hide();
|
|
$tab.show();
|
|
}
|
|
|
|
this.find('>ul a').click(function(event) {
|
|
activate($(event.target).attr('href'));
|
|
if($(this).attr('href')[0]=='#')
|
|
return false;
|
|
});
|
|
|
|
// activate a tab based on the current anchor
|
|
var url = decodeURI(window.location);
|
|
var pos = url.indexOf("#");
|
|
if (pos >= 0) {
|
|
var id = url.substring(pos);
|
|
if (this.find('>ul a[href="'+id+'"]').length > 0) {
|
|
activate(id);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
})(jQuery);
|