There we go.

This commit is contained in:
Mark Nadal 2014-09-16 23:50:55 -07:00
parent a4e605c75e
commit 2af884dd90
3 changed files with 3 additions and 1 deletions

View File

@ -1 +1 @@
web: node examples/admin/app.js
web: node init.js

View File

@ -29,6 +29,7 @@
}
</style>
<h3>Admin Data Editor</h3>
This is a live view of your JSON data, you can edit it in realtime or add new key/values.
<ul name="list">
<li ng-repeat="(key, val) in data">
<div ng-if="key != '_'">

View File

@ -81,6 +81,7 @@
gun.server.regex = /^\/gun/i;
gun.server.clients = {};
gun.server.push = Gun.on.split();
opt.s3 = opt.s3 || {};
var s3 = gun.__.opt.s3 = gun.__.opt.s3 || S3(opt && opt.s3);
s3.prefix = s3.prefix || opt.s3.prefix || '';
s3.prekey = s3.prekey || opt.s3.prekey || '';