Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
B
baas-ide
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
guxukai
baas-ide
Commits
78bb4e0f
Commit
78bb4e0f
authored
Nov 14, 2016
by
Alex Beregszaszi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Udapp: show fallback button only if its in the ABI
parent
f6cf244d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
7 deletions
+18
-7
universal-dapp.js
src/universal-dapp.js
+18
-7
No files found.
src/universal-dapp.js
View file @
78bb4e0f
...
...
@@ -316,13 +316,16 @@ UniversalDApp.prototype.getInstanceInterface = function (contract, address, $tar
$instance
.
append
(
$title
)
// Add the fallback function
$instance
.
append
(
self
.
getCallButton
({
abi
:
{
constant
:
false
,
inputs
:
[],
name
:
'(fallback)'
,
outputs
:
[],
type
:
'function'
},
encode
:
function
(
args
)
{
return
''
},
address
:
address
}))
var
fallback
=
self
.
getFallbackInterface
(
abi
)
if
(
fallback
)
{
$instance
.
append
(
self
.
getCallButton
({
abi
:
{
constant
:
false
,
inputs
:
[],
name
:
'(fallback)'
,
outputs
:
[],
type
:
'function'
},
encode
:
function
(
args
)
{
return
''
},
address
:
address
}))
}
$
.
each
(
abi
,
function
(
i
,
funABI
)
{
if
(
funABI
.
type
!==
'function'
)
{
...
...
@@ -379,6 +382,14 @@ UniversalDApp.prototype.getConstructorInterface = function (abi) {
}
}
UniversalDApp
.
prototype
.
getFallbackInterface
=
function
(
abi
)
{
for
(
var
i
=
0
;
i
<
abi
.
length
;
i
++
)
{
if
(
abi
[
i
].
type
===
'fallback'
)
{
return
abi
[
i
]
}
}
}
UniversalDApp
.
prototype
.
getCallButton
=
function
(
args
)
{
var
self
=
this
// args.abi, args.encode, args.bytecode [constr only], args.address [fun only]
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment