Compare commits

..

3 Commits

Author SHA1 Message Date
orangemug
502586e5d5 1.2.0 2018-05-08 16:11:13 +01:00
Orange Mug
d92d599d8a Merge pull request #290 from orangemug/fix/disable-gist
Disable gist export
2018-05-08 15:55:23 +01:00
orangemug
3487056c7d Disable gist, see <https://github.com/maputnik/editor/issues/269> 2018-05-08 15:21:14 +01:00
4 changed files with 7 additions and 3 deletions

2
package-lock.json generated
View File

@@ -1,6 +1,6 @@
{
"name": "maputnik",
"version": "1.2.0-beta2",
"version": "1.2.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View File

@@ -1,6 +1,6 @@
{
"name": "maputnik",
"version": "1.2.0-beta2",
"version": "1.2.0",
"description": "A MapboxGL visual style editor",
"main": "''",
"scripts": {

View File

@@ -258,7 +258,7 @@ class ExportModal extends React.Component {
</Button>
</div>
<div className="maputnik-modal-section">
<div className="maputnik-modal-section hide">
<h4>Save style</h4>
<Gist mapStyle={this.props.mapStyle} onStyleChanged={this.props.onStyleChanged}/>
</div>

View File

@@ -76,3 +76,7 @@ label:hover {
a {
color: white;
}
.hide {
display: none !important;
}