Merge remote-tracking branch 'origin/master' into remove-npm-updater

pull/149/head
Fabian Jakobs 2015-09-07 12:45:57 +00:00
commit 7ff9f4ee65
3 zmienionych plików z 6 dodań i 5 usunięć

3
node_modules/frontdoor/lib/section.js wygenerowano vendored
Wyświetl plik

@ -233,7 +233,8 @@ module.exports = function Section(name, description, types) {
var splitPath = path.split("/");
if (!splitPath[0])
splitPath.shift();
if (splitPath.length) {
if (splitPath.length && sections.hasOwnProperty(splitPath[0])) {
var section = sections[splitPath[0]];
if (section && section.length) {
var subPath = "/" + splitPath.slice(1).join("/");

Wyświetl plik

@ -1,7 +1,7 @@
{
"name": "c9",
"description": "New Cloud9 Client",
"version": "3.0.2598",
"version": "3.0.2610",
"author": "Ajax.org B.V. <info@ajax.org>",
"private": true,
"main": "bin/c9",
@ -71,7 +71,7 @@
"c9.ide.find": "#35379124ca",
"c9.ide.find.infiles": "#c132ad243c",
"c9.ide.find.replace": "#44772dd796",
"c9.ide.run.debug": "#db9c03c50a",
"c9.ide.run.debug": "#2bc3f31089",
"c9.automate": "#47e2c429c9",
"c9.ide.ace.emmet": "#6dc4585e02",
"c9.ide.ace.gotoline": "#a8ff07c8f4",

Wyświetl plik

@ -84,7 +84,7 @@ define(function(require, exports, module) {
}]);
statics.addStatics(externalPlugins.map(function(plugin) {
return {
return {
path: __dirname + "/../../node_modules/" + plugin,
mount: "/plugins/" + plugin
};
@ -141,4 +141,4 @@ define(function(require, exports, module) {
"c9.static.plugins": plugin
});
}
});
});