MINOR Moved sitetree state setting javascript to LeftAndMain.Tree.js, used in AssetAdmin as well

git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@92811 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
Ingo Schommer 2009-11-21 03:19:27 +00:00
parent 175ceaf890
commit 6aae0aaf53
2 changed files with 15 additions and 16 deletions

View File

@ -1,19 +1,3 @@
(function($) {
/**
* @class Tree panel.
* @name ss.sitetree
*/
$('#sitetree').concrete('ss', function($){
return/** @lends ss.sitetree */{
onmatch: function() {
// make sure current ID of loaded form is actually selected in tree
var id = $('#Form_EditForm :input[name=ID]').val();
if(id) this[0].setCurrentByIdx(id);
}
};
});
}(jQuery));
if(typeof SiteTreeHandlers == 'undefined') SiteTreeHandlers = {};
SiteTreeHandlers.parentChanged_url = 'admin/ajaxupdateparent';
SiteTreeHandlers.orderChanged_url = 'admin/ajaxupdatesort';

View File

@ -16,6 +16,21 @@ var _HANDLER_FORMS = {
search : 'search_options'
};
(function($) {
/**
* @class Tree panel.
* @name ss.sitetree
*/
$('#sitetree').concrete('ss', function($){
return/** @lends ss.sitetree */{
onmatch: function() {
// make sure current ID of loaded form is actually selected in tree
var id = $('#Form_EditForm :input[name=ID]').val();
if(id) this[0].setCurrentByIdx(id);
}
};
});
}(jQuery));
/**
* Overload this with a real context menu if necessary