Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
cheton committed Jan 2, 2018
1 parent a50de4e commit ac55a11
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
7 changes: 3 additions & 4 deletions docs/bundle.js
Original file line number Diff line number Diff line change
Expand Up @@ -22254,7 +22254,7 @@ var App = function (_Component) {
_react2.default.createElement(
'h4',
null,
'Modal dialog w/ title'
'Modal Dialog'
),
_react2.default.createElement(
'div',
Expand Down Expand Up @@ -22363,7 +22363,7 @@ var App = function (_Component) {
_react2.default.createElement(
'h4',
null,
'Modal dialog w/o title'
'Modal Dialog (w/o title)'
),
_react2.default.createElement(
'div',
Expand All @@ -22373,7 +22373,6 @@ var App = function (_Component) {
{
onClick: function onClick() {
_this2.openModal('modal', {
title: 'Lorem Ipsum',
body: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.'
});
}
Expand Down Expand Up @@ -22465,4 +22464,4 @@ _reactDom2.default.render(_react2.default.createElement(App, null), document.get
/***/ })

/******/ });
//# sourceMappingURL=bundle.js.map?c7b5e314a5b15ba2c0ac
//# sourceMappingURL=bundle.js.map?c96ddf2f5f0dfb09c46a
2 changes: 1 addition & 1 deletion docs/bundle.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@
</div>
</nav>
<div id="container"></div>
<script type="text/javascript" src="bundle.js?c7b5e314a5b15ba2c0ac"></script></body>
<script type="text/javascript" src="bundle.js?c96ddf2f5f0dfb09c46a"></script></body>
</html>
5 changes: 2 additions & 3 deletions examples/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ class App extends Component {
<h3>Examples</h3>
<div className="row">
<div className="col-sm-6" style={{ marginBottom: 20 }}>
<h4>Modal dialog w/ title</h4>
<h4>Modal Dialog</h4>
<div style={{ marginBottom: 20 }}>
<Button
onClick={() => {
Expand Down Expand Up @@ -187,12 +187,11 @@ class App extends Component {
</Modal>
</div>
<div className="col-sm-6" style={{ marginBottom: 20 }}>
<h4>Modal dialog w/o title</h4>
<h4>Modal Dialog (w/o title)</h4>
<div style={{ marginBottom: 20 }}>
<Button
onClick={() => {
this.openModal('modal', {
title: 'Lorem Ipsum',
body: 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.'
});
}}
Expand Down

0 comments on commit ac55a11

Please sign in to comment.