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
7723cd9e
Commit
7723cd9e
authored
Apr 15, 2016
by
chriseth
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #139 from axic/feature/fallback-func
Support fallback function for contracts
parents
9e148f0f
678b0b5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
1 deletion
+10
-1
universal-dapp.js
assets/js/universal-dapp.js
+10
-1
No files found.
assets/js/universal-dapp.js
View file @
7723cd9e
...
@@ -169,7 +169,16 @@ UniversalDApp.prototype.getInstanceInterface = function (contract, address, $tar
...
@@ -169,7 +169,16 @@ UniversalDApp.prototype.getInstanceInterface = function (contract, address, $tar
$events
.
append
(
$event
);
$events
.
append
(
$event
);
})
})
}
}
$instance
.
append
(
$title
);
$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
}));
$
.
each
(
abi
,
function
(
i
,
funABI
)
{
$
.
each
(
abi
,
function
(
i
,
funABI
)
{
if
(
funABI
.
type
!=
'function'
)
return
;
if
(
funABI
.
type
!=
'function'
)
return
;
...
...
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