mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
BUGFIX: add missing selectors and namespace qualifiers
This commit is contained in:
parent
bc4bf9d43c
commit
ac2567761b
@ -56,7 +56,10 @@
|
||||
|
||||
this._super();
|
||||
},
|
||||
|
||||
onunmatch: function() {
|
||||
this._super();
|
||||
}
|
||||
|
||||
/**
|
||||
* Function: onsubmit
|
||||
*
|
||||
@ -123,7 +126,7 @@
|
||||
origOptions = this.getOrigOptions(),
|
||||
dropdown = this.find('select[name=PageType]'),
|
||||
disallowed = [],
|
||||
className = (selectedNode) ? selectedNode.getClassname() : null,
|
||||
className = (selectedNode.length>0) ? selectedNode.entwine('ss.tree').getClassname() : null,
|
||||
siteTreeHints = $.parseJSON($('#sitetree_ul').attr('data-hints')),
|
||||
disableDropDown = true,
|
||||
selectedOption = dropdown.val();
|
||||
|
Loading…
Reference in New Issue
Block a user