사용자:Hsl0/연구소/3.js: 두 판 사이의 차이
imported>Hsl0 편집 요약 없음 |
imported>Hsl0 편집 요약 없음 |
||
7번째 줄: | 7번째 줄: | ||
popup: { | popup: { | ||
head: true, | head: true, | ||
padded: | padded: !('autoclose' in this.dataset), | ||
autoClose: 'autoclose' in this.dataset, | |||
$content: $(this).find('.popuplink-content') | $content: $(this).find('.popuplink-content') | ||
} | } |
2021년 7월 24일 (토) 14:05 판
/** @requires oojs-ui-widgets */
registerRenderer(function createPopupButton() {
$('.popuplink').each(function() {
var widget = new OO.ui.PopupButtonWidget({
label: $(this).find('.popuplink-label'),
framed: false,
popup: {
head: true,
padded: !('autoclose' in this.dataset),
autoClose: 'autoclose' in this.dataset,
$content: $(this).find('.popuplink-content')
}
});
$(this).html(widget.$element);
});
});