kopia lustrzana https://github.com/c9/core
Merge pull request +6237 from c9/fix/file-save-logging
File save time loggingpull/39/head
commit
55ee409c76
|
@ -60,7 +60,7 @@
|
||||||
"c9.ide.language.javascript.tern": "#a65ad88dd9",
|
"c9.ide.language.javascript.tern": "#a65ad88dd9",
|
||||||
"c9.ide.language.javascript.infer": "#ebb2daf81a",
|
"c9.ide.language.javascript.infer": "#ebb2daf81a",
|
||||||
"c9.ide.language.jsonalyzer": "#722983bf96",
|
"c9.ide.language.jsonalyzer": "#722983bf96",
|
||||||
"c9.ide.collab": "#13fe5c8f27",
|
"c9.ide.collab": "#a75ffca258",
|
||||||
"c9.ide.local": "#2bfd7ff051",
|
"c9.ide.local": "#2bfd7ff051",
|
||||||
"c9.ide.find": "#989c06e6a7",
|
"c9.ide.find": "#989c06e6a7",
|
||||||
"c9.ide.find.infiles": "#28b3cfcb47",
|
"c9.ide.find.infiles": "#28b3cfcb47",
|
||||||
|
|
|
@ -115,9 +115,11 @@ require([
|
||||||
findreplace: {
|
findreplace: {
|
||||||
|
|
||||||
},
|
},
|
||||||
ace: {
|
ace: (function() {
|
||||||
getElement: function(){}
|
var x = new EventEmitter();
|
||||||
},
|
x.getElement = function(){};
|
||||||
|
return x;
|
||||||
|
})(),
|
||||||
css: {
|
css: {
|
||||||
get packed() { return true; },
|
get packed() { return true; },
|
||||||
get packedThemes() { return true; },
|
get packedThemes() { return true; },
|
||||||
|
@ -302,6 +304,7 @@ require([
|
||||||
setCommand: function(){},
|
setCommand: function(){},
|
||||||
attachTo: function(){},
|
attachTo: function(){},
|
||||||
detach: function(){},
|
detach: function(){},
|
||||||
|
emit: emit,
|
||||||
show: function(){ emit("show"); },
|
show: function(){ emit("show"); },
|
||||||
hide: function(){ emit("hide"); },
|
hide: function(){ emit("hide"); },
|
||||||
draw: function draw(area) {
|
draw: function draw(area) {
|
||||||
|
@ -419,7 +422,44 @@ require([
|
||||||
}
|
}
|
||||||
doc.setValue(newVal);
|
doc.setValue(newVal);
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
metadata: (function(){
|
||||||
|
var x = new EventEmitter();
|
||||||
|
return x;
|
||||||
|
})(),
|
||||||
|
editors: (function(){
|
||||||
|
var x = new EventEmitter();
|
||||||
|
return x;
|
||||||
|
})(),
|
||||||
|
timeslider: (function(){
|
||||||
|
var x = new EventEmitter();
|
||||||
|
return x;
|
||||||
|
})(),
|
||||||
|
OTDocument: (function(){
|
||||||
|
var x = new EventEmitter();
|
||||||
|
return x;
|
||||||
|
})(),
|
||||||
|
"notification.bubble": (function(){
|
||||||
|
var x = new EventEmitter();
|
||||||
|
return x;
|
||||||
|
})(),
|
||||||
|
"collab": (function(){
|
||||||
|
var x = new EventEmitter();
|
||||||
|
return x;
|
||||||
|
})(),
|
||||||
|
"collab.connect": (function(){
|
||||||
|
var x = new EventEmitter();
|
||||||
|
return x;
|
||||||
|
})(),
|
||||||
|
"collab.workspace": (function(){
|
||||||
|
var x = new EventEmitter();
|
||||||
|
x.users = [];
|
||||||
|
return x;
|
||||||
|
})(),
|
||||||
|
"collab.util": (function(){
|
||||||
|
var x = new EventEmitter();
|
||||||
|
return x;
|
||||||
|
})(),
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Ładowanie…
Reference in New Issue