1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 18:41:38 +01:00

Remove advanced options for now.

This commit is contained in:
Kevin Serrano 2017-02-28 14:19:32 -08:00
parent 39c824f2f3
commit d21915c605
No known key found for this signature in database
GPG Key ID: 7CC862A58D2889B4

View File

@ -109,17 +109,6 @@ PTXP.render = function () {
h('.table-box', [
h('.row', [
h('.cell.label', 'Advanced Options'),
h('input', {
type: 'checkbox',
selected: advanced,
onChange: () => {
this.setState({advanced: !advanced})
},
}),
]),
// Ether Value
// Currently not customizable, but easily modified
// in the way that gas and gasLimit currently are.
@ -129,7 +118,7 @@ PTXP.render = function () {
]),
// Gas Limit (customizable)
advanced ? h('.cell.row', [
h('.cell.row', [
h('.cell.label', 'Gas Limit'),
h('.cell.value', {
}, [
@ -146,10 +135,10 @@ PTXP.render = function () {
},
}),
]),
]) : null,
]),
// Gas Price (customizable)
advanced ? h('.cell.row', [
h('.cell.row', [
h('.cell.label', 'Gas Price'),
h('.cell.value', {
}, [
@ -166,7 +155,7 @@ PTXP.render = function () {
},
}),
]),
]) : null,
]),