Update as upstream

This commit is contained in:
Plusb Preco
2015-07-15 08:30:02 +09:00
parent 26163e5812
commit b524914008
5 changed files with 65 additions and 25 deletions

View File

@@ -13,6 +13,9 @@ app.on('ready', function() {
protocol.registerProtocol('atom', function(request) {
var url = request.url.substr(7)
return new protocol.RequestFileJob(path.normalize(__dirname + '/' + url));
}, function (error, scheme) {
if (!error)
console.log(scheme, ' registered successfully')
});
});
```