Merge pull request +13718 from c9/docker-ide-update-smf+cs50

update cs50 and smf
pull/299/head
Harutyun Amirjanyan 2016-05-05 23:55:02 +04:00
commit 91359d4031
2 zmienionych plików z 8 dodań i 3 usunięć

Wyświetl plik

@ -9,7 +9,10 @@
"https://cloud9beta.com/", "https://ide.cloud9beta.com/",
"http://localhost:8181/", "http://localhost:5252/",
"https://c9.vm:8181/", "https://c9.vm:5252/",
"https://c9.dev/", "https://ide.c9.dev/"
"https://c9.dev/", "https://ide.c9.dev/",
"https://ide.dev.smartface.io",
"https://ide.cs50.io",
"https://ide.mbed.com"
]
},
"description": "Cloud9 is an online platform for development that makes developing applications more convenient than ever",

Wyświetl plik

@ -86,9 +86,11 @@ define(function(require, exports, module) {
}]);
statics.addStatics(externalPlugins.map(function(plugin) {
if (typeof plugin == "string")
plugin = { path: plugin, mount: plugin};
return {
path: __dirname + "/../../node_modules/" + plugin,
mount: "/plugins/" + plugin
path: __dirname + "/../../node_modules/" + plugin.path,
mount: "/plugins/" + plugin.mount
};
}));