사용자:Hsl0/연구소/3.js: 두 판 사이의 차이
imported>Hsl0 편집 요약 없음 |
imported>Hsl0 편집 요약 없음 |
||
(같은 사용자의 중간 판 하나는 보이지 않습니다) | |||
10번째 줄: | 10번째 줄: | ||
framed: false, | framed: false, | ||
popup: { | popup: { | ||
head: | head: $header.length || !('autoclose' in this.dataset), | ||
padded: true, | padded: true, | ||
autoClose: 'autoclose' in this.dataset, | autoClose: 'autoclose' in this.dataset, |
2021년 7월 24일 (토) 14:59 기준 최신판
/**
* @requires oojs-ui-widgets
* @requires ext.gadget.Tasker
**/
registerRenderer(function createPopupButton() {
$('.popuplink').each(function() {
var $header = $(this).find('.popuplink-header');
var widget = new OO.ui.PopupButtonWidget({
label: $(this).find('.popuplink-label'),
framed: false,
popup: {
head: $header.length || !('autoclose' in this.dataset),
padded: true,
autoClose: 'autoclose' in this.dataset,
label: $header,
$content: $(this).find('.popuplink-content')
}
});
$(this).html(widget.$element);
});
});