Skip to content
This repository has been archived by the owner on Jan 9, 2019. It is now read-only.

Commit

Permalink
add links
Browse files Browse the repository at this point in the history
  • Loading branch information
alexstep committed Nov 13, 2017
1 parent 460f4cd commit 5ca03a8
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
3 changes: 0 additions & 3 deletions src/model/DApps/DApps.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ const injectDAppScript = function(key, url, callback){
}

setTimeout(()=>{
console.log('injectDAppScript', url)
var script = document.createElement('script')
script.id = script_id
script.src = url
Expand Down Expand Up @@ -179,7 +178,6 @@ export default new class DAppsAPIInit {

printDocs( G.DCLib )

console.log('get DApps info')
fetch(_config.server+'/DApps/info/')
.then( r => { return r.json() })
.then( info => {
Expand All @@ -205,7 +203,6 @@ export default new class DAppsAPIInit {

loadAll(){
fetch(_config.server+'/DApps/list/').then( r => { return r.json() }).then( list => {
console.log(list)
this.List = Object.assign({},list)
Object.keys(list).forEach( key => {
this.loadDApp(key)
Expand Down
5 changes: 0 additions & 5 deletions src/model/DApps/docs.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ export default function(DCLib){

console.group('Account')

console.group('Eth Lightwallet')
console.log('lightwallet placed in DCLib.Account.lib ')
console.log('docs: https://github.com/ConsenSys/eth-lightwallet')
console.groupEnd()

console.group('Eth Account/Wallet')
console.log('Account info DCLib().Account.get():')
let accinfo = DCLib.Account.get()
Expand Down
2 changes: 1 addition & 1 deletion src/view/components/screens/dev/dapps_list.tag
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ import './dapps_list.less'
</script>

<div class="links">
<a target="_blank" href="{dapps_path}/example.zip">Download DApp exmaple</a>
<a target="_blank" href="https://github.com/DaoCasino/BankRollerApp/raw/master/DApps/example.zip">Download DApp exmaple</a>
<a target="_blank" href="https://github.com/DaoCasino/DCLib">Read docs</a>
</div>

Expand Down

0 comments on commit 5ca03a8

Please sign in to comment.