Skip to content

Commit

Permalink
Revert "UPDATE: added placeholder text for input box"
Browse files Browse the repository at this point in the history
This reverts commit 0c97c41.
  • Loading branch information
isabellachen committed Dec 3, 2017
1 parent 2d13646 commit 16aa299
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build/popup.js
Original file line number Diff line number Diff line change
Expand Up @@ -11957,8 +11957,8 @@ var App = function (_Component) {
onKeyPress: this.findCenter,
placeholder: 'find location'
}),
_react2.default.createElement('textarea', { placeholder: 'What\'s great about this location?', id: 'desc' }),
_react2.default.createElement('textarea', { placeholder: 'See an image you like? Paste its url here.', id: 'pic' }),
_react2.default.createElement('textarea', { id: 'desc' }),
_react2.default.createElement('textarea', { id: 'pic' }),
_react2.default.createElement(
'button',
{ onClick: this.addMarker },
Expand Down Expand Up @@ -13282,7 +13282,7 @@ exports = module.exports = __webpack_require__(125)(undefined);


// module
exports.push([module.i, "body {\n background-color: #ebe3cd;\n margin: 0; }\n\nbutton {\n background-color: #a5b076;\n color: #fff;\n border: none;\n width: 100vw;\n height: 40px; }\n\n.mapStyle {\n width: 550px;\n height: 450px;\n margin: 0; }\n\n.app {\n width: 550px;\n height: 500px; }\n\n#findCenter {\n position: absolute;\n height: 24px;\n width: 300px;\n top: 10px;\n left: 120px; }\n\n#desc {\n width: 98.8vw;\n height: 60px;\n font-size: 1.2em; }\n\n#pic {\n width: 98.8vw;\n height: 20px;\n font-size: 1.2em; }\n", ""]);
exports.push([module.i, "body {\n background-color: #ebe3cd;\n margin: 0; }\n\nbutton {\n background-color: #a5b076;\n color: #fff;\n border: none;\n width: 100vw;\n height: 40px; }\n\n.mapStyle {\n width: 550px;\n height: 450px;\n margin: 0; }\n\n.app {\n width: 550px;\n height: 500px; }\n\n#findCenter {\n position: absolute;\n height: 24px;\n width: 300px;\n top: 10px;\n left: 120px; }\n\n#desc {\n width: 98.8vw;\n height: 60px;\n font-size: 1.2em; }\n\n#pic {\n width: 98.8vw;\n height: 60px;\n font-size: 1.2em; }\n", ""]);

// exports

Expand Down
4 changes: 2 additions & 2 deletions popup/src/scripts/components/app/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ class App extends Component {
placeholder="find location"
/>

<textarea placeholder="What's great about this location?" id="desc" />
<textarea placeholder="See an image you like? Paste its url here." id="pic" />
<textarea id="desc" />
<textarea id="pic" />

<button onClick={this.addMarker}>Add Marker</button>

Expand Down
2 changes: 1 addition & 1 deletion popup/src/scripts/components/app/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,6 @@ button {
}
#pic {
width: 98.8vw;
height: 20px;
height: 60px;
font-size: 1.2em;
}

0 comments on commit 16aa299

Please sign in to comment.