mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
MINOR no longer assume with batch actions that the child pages of a parent are to be ticked (from r90999)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/branches/2.4@96807 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
ae10403240
commit
513de2271a
@ -122,10 +122,6 @@ ul.tree.multiselect span.a.selected span.b span.c a {
|
||||
background-image: url(../images/tickbox-ticked.gif) !important;
|
||||
}
|
||||
|
||||
ul.tree.multiselect li.selected ul span.a a {
|
||||
background-image: url(../images/tickbox-greyticked.gif) !important;
|
||||
}
|
||||
|
||||
/* Span-B: Plus/Minus icon */
|
||||
ul.tree.multiselect li.selected span.a.children span.b,
|
||||
ul.tree.multiselect li.selected span.a.unexpanded span.b {
|
||||
|
@ -367,12 +367,6 @@ batchActionGlobals = {
|
||||
if( idx.match(/^new-[a-z0-9A-Z\-]+$/) ) {
|
||||
batchActionGlobals.newNodes.push( idx );
|
||||
} else {
|
||||
var i, item, childrenTopublish = st.getTreeNodeByIdx(idx).getElementsByTagName('li');
|
||||
for(i=0;item=childrenTopublish[i];i++) {
|
||||
if(csvIDs.indexOf(st.getIdxOf(childrenTopublish[i])) == -1) {
|
||||
csvIDs.push(st.getIdxOf(childrenTopublish[i]));
|
||||
}
|
||||
}
|
||||
if(csvIDs.indexOf(idx) == -1) {
|
||||
csvIDs.push(idx);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user