Merge pull request #1820 from open-sausages/pulls/4/remove-who-can-view-toggle

Move who-can-view toggle to Admin module
This commit is contained in:
Damian Mooyman 2017-05-15 11:55:42 +12:00 committed by GitHub
commit 367c35a1de
2 changed files with 1 additions and 50 deletions

View File

@ -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")
}):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(){
"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()
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()
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=""

View File

@ -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
*