update api interface
This commit is contained in:
parent
b3aa9dfd7d
commit
b5dc67bba1
1 changed files with 3 additions and 3 deletions
|
@ -24,8 +24,8 @@ var app = new Ox.App({
|
||||||
app.$ui.actionList = constructList();
|
app.$ui.actionList = constructList();
|
||||||
app.$ui.actionInfo = Ox.Container().css({padding: '8px'});
|
app.$ui.actionInfo = Ox.Container().css({padding: '8px'});
|
||||||
|
|
||||||
app.api.apidoc(function(results) {
|
app.api.api({docs: true}, function(results) {
|
||||||
app.docs = results.data.actions;
|
app.actions = results.data.actions;
|
||||||
|
|
||||||
if(document.location.hash) {
|
if(document.location.hash) {
|
||||||
app.$ui.actionList.triggerEvent('select', {ids: document.location.hash.substring(1).split(',')});
|
app.$ui.actionList.triggerEvent('select', {ids: document.location.hash.substring(1).split(',')});
|
||||||
|
@ -94,7 +94,7 @@ function constructList() {
|
||||||
$.each(data.ids, function(v, k) {
|
$.each(data.ids, function(v, k) {
|
||||||
console.log(k)
|
console.log(k)
|
||||||
info.append($("<h2>").html(k));
|
info.append($("<h2>").html(k));
|
||||||
info.append($('<pre>').html(app.docs[k].replace('/\n/<br>\n/g')));
|
info.append($('<pre>').html(app.actions[k]['doc'].replace('/\n/<br>\n/g')));
|
||||||
hash += k + ','
|
hash += k + ','
|
||||||
});
|
});
|
||||||
document.location.hash = hash.substring(0, hash.length-1);
|
document.location.hash = hash.substring(0, hash.length-1);
|
||||||
|
|
Loading…
Reference in a new issue