kopia lustrzana https://github.com/c9/core
Added trees and scaffolding for test runner plugin
rodzic
44d3a15aa8
commit
60914ec6f1
|
@ -200,7 +200,7 @@
|
||||||
-webkit-flex: 1;
|
-webkit-flex: 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
.filetree .heading{
|
.ace_tree .heading{
|
||||||
font-variant: small-caps;
|
font-variant: small-caps;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
margin-top: 0px;
|
margin-top: 0px;
|
||||||
|
@ -209,9 +209,9 @@
|
||||||
text-shadow: @tree-heading-text-shadow;
|
text-shadow: @tree-heading-text-shadow;
|
||||||
line-height: 0;
|
line-height: 0;
|
||||||
}
|
}
|
||||||
.filetree .heading .toggler{
|
.ace_tree .heading .toggler{
|
||||||
display : none;
|
display : none !important;
|
||||||
}
|
}
|
||||||
.filetree .heading .filetree-icon{
|
.ace_tree .heading .ace_tree-icon{
|
||||||
display : none;
|
display : none !important;
|
||||||
}
|
}
|
|
@ -65,6 +65,9 @@ define(function(require, exports, module) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!baseclass)
|
||||||
|
plugin.load(null, options.baseName || "datagrid");
|
||||||
|
|
||||||
return plugin;
|
return plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -79,6 +79,7 @@ define(function(require, exports, module) {
|
||||||
redirectEvents = {
|
redirectEvents = {
|
||||||
scroll: model,
|
scroll: model,
|
||||||
scrollbarVisibilityChanged: acetree.renderer,
|
scrollbarVisibilityChanged: acetree.renderer,
|
||||||
|
afterRender: acetree.renderer,
|
||||||
resize: acetree.renderer,
|
resize: acetree.renderer,
|
||||||
expand: model,
|
expand: model,
|
||||||
collapse: model,
|
collapse: model,
|
||||||
|
@ -454,6 +455,10 @@ define(function(require, exports, module) {
|
||||||
* @event afterRename Fires
|
* @event afterRename Fires
|
||||||
*/
|
*/
|
||||||
"afterRename",
|
"afterRename",
|
||||||
|
/**
|
||||||
|
* @event afterRender Fires
|
||||||
|
*/
|
||||||
|
"afterRender",
|
||||||
/**
|
/**
|
||||||
* @event check Fires
|
* @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;
|
return plugin;
|
||||||
}
|
}
|
||||||
|
|
|
@ -102,6 +102,9 @@ define(function(require, exports, module) {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
if (!baseclass)
|
||||||
|
plugin.load(null, options.baseName || "tree");
|
||||||
|
|
||||||
return plugin;
|
return plugin;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue