Merge pull request #5 from status-im/develop

Removed stub links and fixed JS for fetching posts
This commit is contained in:
Bruno Škvorc 2018-10-12 13:36:37 +02:00 committed by GitHub
commit 85ff631c1e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 2 additions and 4 deletions

View File

@ -2,8 +2,6 @@ docs:
Nimbus:
introduction: index.html
building: building.html
options: options.html
libs: libs.html
milestones: milestones.html
design: design.html
team: team.html

View File

@ -21,7 +21,7 @@ This document will explain how to install, test, and run Nimbus on your local ma
```
- on Linux
```bash
sudo apt-get install rocksdb # or your own Linux distribution's equivalent
sudo apt-get install librocksdb-dev rocksdb # or your own Linux distribution's equivalent
curl https://nim-lang.org/choosenim/init.sh -sSf | sh
```

View File

@ -1,5 +1,5 @@
$(document).ready(function () {
let url = 'https://our.status.im/ghost/api/v0.1/posts/?limit=3&formats=plaintext&client_id=ghost-frontend&client_secret=2b055fcd57ba';
let url = 'https://our.status.im/ghost/api/v0.1/posts/?filter=tag:nimbus&order=published_at%20asc&limit=3&formats=plaintext&client_id=ghost-frontend&client_secret=2b055fcd57ba';
var urlBase = [location.protocol, '//', location.host, location.pathname].join('');
$.ajax({