mirror of
https://github.com/linuxserver/core.git
synced 2026-02-20 05:07:19 +08:00
Added trees and scaffolding for test runner plugin
This commit is contained in:
parent
44d3a15aa8
commit
60914ec6f1
@ -200,7 +200,7 @@
|
||||
-webkit-flex: 1;
|
||||
}
|
||||
|
||||
.filetree .heading{
|
||||
.ace_tree .heading{
|
||||
font-variant: small-caps;
|
||||
font-size: 16px;
|
||||
margin-top: 0px;
|
||||
@ -209,9 +209,9 @@
|
||||
text-shadow: @tree-heading-text-shadow;
|
||||
line-height: 0;
|
||||
}
|
||||
.filetree .heading .toggler{
|
||||
display : none;
|
||||
.ace_tree .heading .toggler{
|
||||
display : none !important;
|
||||
}
|
||||
.filetree .heading .filetree-icon{
|
||||
display : none;
|
||||
.ace_tree .heading .ace_tree-icon{
|
||||
display : none !important;
|
||||
}
|
||||
@ -65,6 +65,9 @@ define(function(require, exports, module) {
|
||||
}
|
||||
});
|
||||
|
||||
if (!baseclass)
|
||||
plugin.load(null, options.baseName || "datagrid");
|
||||
|
||||
return plugin;
|
||||
}
|
||||
|
||||
|
||||
@ -79,6 +79,7 @@ define(function(require, exports, module) {
|
||||
redirectEvents = {
|
||||
scroll: model,
|
||||
scrollbarVisibilityChanged: acetree.renderer,
|
||||
afterRender: acetree.renderer,
|
||||
resize: acetree.renderer,
|
||||
expand: model,
|
||||
collapse: model,
|
||||
@ -454,6 +455,10 @@ define(function(require, exports, module) {
|
||||
* @event afterRename Fires
|
||||
*/
|
||||
"afterRename",
|
||||
/**
|
||||
* @event afterRender Fires
|
||||
*/
|
||||
"afterRender",
|
||||
/**
|
||||
* @event check Fires
|
||||
*/
|
||||
@ -598,7 +603,8 @@ define(function(require, exports, module) {
|
||||
}
|
||||
});
|
||||
|
||||
plugin.load(null, options.baseName || "list");
|
||||
if (!baseclass)
|
||||
plugin.load(null, options.baseName || "list");
|
||||
|
||||
return plugin;
|
||||
}
|
||||
|
||||
@ -102,6 +102,9 @@ define(function(require, exports, module) {
|
||||
}
|
||||
});
|
||||
|
||||
if (!baseclass)
|
||||
plugin.load(null, options.baseName || "tree");
|
||||
|
||||
return plugin;
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user