mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Move who-can-view toggle to Admin module
This commit is contained in:
parent
d539109455
commit
5bd3440e61
6
client/dist/js/bundle.js
vendored
6
client/dist/js/bundle.js
vendored
@ -55,11 +55,7 @@ this._super()},onunmatch:function t(){this._super()},_toggleSelection:function e
|
|||||||
"root"==a?this.find(":input[name=ParentID]").val(0):this.find(":input[name=ParentID]").val(this.find("#Form_EditForm_ParentType_subpage").data("parentIdValue")),"root"!=a?i.slideDown(400,function(){t(this).css("overflow","visible")
|
"root"==a?this.find(":input[name=ParentID]").val(0):this.find(":input[name=ParentID]").val(this.find("#Form_EditForm_ParentType_subpage").data("parentIdValue")),"root"!=a?i.slideDown(400,function(){t(this).css("overflow","visible")
|
||||||
|
|
||||||
}):i.slideUp()},_changeParentId:function t(e){var n=this.find(":input[name=ParentID]").val()
|
}):i.slideUp()},_changeParentId:function t(e){var n=this.find(":input[name=ParentID]").val()
|
||||||
this.find("#Form_EditForm_ParentType_subpage").data("parentIdValue",n)}}),t('.cms-edit-form [name="CanViewType"], .cms-edit-form [name="CanEditType"], .cms-edit-form #CanCreateTopLevelType').entwine({onmatch:function t(){
|
this.find("#Form_EditForm_ParentType_subpage").data("parentIdValue",n)}}),t(".cms-edit-form .btn-toolbar #Form_EditForm_action_print").entwine({onclick:function e(n){var a=t(this[0].form).attr("action").replace(/\?.*$/,"")+"/printable/"+t(":input[name=ID]",this[0].form).val()
|
||||||
"OnlyTheseUsers"===this.val()&&(this.is(":checked")?this.showList(!0):this.hideList(!0))},onchange:function t(e){"OnlyTheseUsers"===e.target.value?this.showList():this.hideList()},showList:function t(e){
|
|
||||||
var n=this.closest(".field"),a=n.next().filter(".listbox")
|
|
||||||
n.addClass("field--merge-below"),a[e?"show":"slideDown"](function(){a.css("overflow","visible")})},hideList:function t(e){var n=this.closest(".field"),a=n.next().filter(".listbox")
|
|
||||||
a[e?"hide":"slideUp"](function(){n.removeClass("field--merge-below")}).css("overflow","hidden")}}),t(".cms-edit-form .btn-toolbar #Form_EditForm_action_print").entwine({onclick:function e(n){var a=t(this[0].form).attr("action").replace(/\?.*$/,"")+"/printable/"+t(":input[name=ID]",this[0].form).val()
|
|
||||||
|
|
||||||
|
|
||||||
return"http://"!=a.substr(0,7)&&(a=t("base").attr("href")+a),window.open(a,"printable"),!1}}),t(".cms-edit-form .btn-toolbar #Form_EditForm_action_rollback").entwine({onclick:function t(e){var n=this.parents("form:first"),a=n.find(":input[name=Version]").val(),i=""
|
return"http://"!=a.substr(0,7)&&(a=t("base").attr("href")+a),window.open(a,"printable"),!1}}),t(".cms-edit-form .btn-toolbar #Form_EditForm_action_rollback").entwine({onclick:function t(e){var n=this.parents("form:first"),a=n.find(":input[name=Version]").val(),i=""
|
||||||
|
@ -195,51 +195,6 @@ $.entwine('ss', function($){
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
/**
|
|
||||||
* Class: .cms-edit-form #CanViewType, .cms-edit-form #CanEditType
|
|
||||||
*
|
|
||||||
* Toggle display of group dropdown in "access" tab,
|
|
||||||
* based on selection of radiobuttons.
|
|
||||||
*/
|
|
||||||
$('.cms-edit-form [name="CanViewType"], ' +
|
|
||||||
'.cms-edit-form [name="CanEditType"], ' +
|
|
||||||
'.cms-edit-form #CanCreateTopLevelType').entwine({
|
|
||||||
onmatch: function () {
|
|
||||||
if (this.val() === 'OnlyTheseUsers') {
|
|
||||||
if (this.is(':checked')) {
|
|
||||||
this.showList(true);
|
|
||||||
} else {
|
|
||||||
this.hideList(true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
onchange: function (e) {
|
|
||||||
if (e.target.value === 'OnlyTheseUsers') {
|
|
||||||
this.showList();
|
|
||||||
} else {
|
|
||||||
this.hideList();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
showList: function (instant) {
|
|
||||||
const holder = this.closest('.field');
|
|
||||||
const list = holder.next().filter('.listbox');
|
|
||||||
|
|
||||||
holder.addClass('field--merge-below');
|
|
||||||
list[instant ? 'show' : 'slideDown'](() => {
|
|
||||||
// jquery adding overflow:hidden in hide, this will break listbox display
|
|
||||||
list.css('overflow','visible');
|
|
||||||
});
|
|
||||||
},
|
|
||||||
hideList: function (instant) {
|
|
||||||
const holder = this.closest('.field');
|
|
||||||
const list = holder.next().filter('.listbox');
|
|
||||||
|
|
||||||
list[instant ? 'hide' : 'slideUp'](() => {
|
|
||||||
holder.removeClass('field--merge-below');
|
|
||||||
}).css('overflow','hidden');
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class: .cms-edit-form .btn-toolbar #Form_EditForm_action_print
|
* Class: .cms-edit-form .btn-toolbar #Form_EditForm_action_print
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user