Compare commits

..

No commits in common. "4e7018efd6d95b29e1eefc6c1221ac37060bcb38" and "7845185212c6a9ff19606c050ae2f70ad23110e5" have entirely different histories.

View File

@ -1311,29 +1311,6 @@ var Gallery = {
//- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
var ContextProto = {
dom: undefined,
parent: undefined,
constructors: {},
end: function(){
return this.parent },
setup: function(){
return this },
}
var Context = function(name, constructors, extend={}){
var obj = this instanceof Context ?
obj
: Reflect.construct(
Function,
['return this.setup ? this.setup(...arguments) : this'],
Context)
return obj }
var Toolbar = {
dom: undefined,
gallery: undefined,