Skip to content

Commit

Permalink
Bumping to 0.0.4 to support breaking changes from React 0.14+
Browse files Browse the repository at this point in the history
  • Loading branch information
blackjk3 committed Dec 4, 2015
1 parent 5d748a9 commit 6c85df6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![npm package](https://img.shields.io/badge/npm-0.0.3-orange.svg?style=flat-square)](https://www.npmjs.com/package/react-signature-pad)
[![npm package](https://img.shields.io/badge/npm-0.0.4-orange.svg?style=flat-square)](https://www.npmjs.com/package/react-signature-pad)

# React Signature Pad
A [signature pad](https://github.com/szimek/signature_pad) implementation for react.
Expand Down
5 changes: 3 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import React from "react";
import ReactDOM from "react-dom";
import SignaturePad from "./src/index";

React.render(
ReactDOM.render(
<SignaturePad clearButton="true" />,
document.body
document.getElementById('container')
)
1 change: 1 addition & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="container"></div>
<script src="http://localhost:8080/webpack-dev-server.js"></script>
<script src="app.js"></script>
</body>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-signature-pad",
"version": "0.0.3",
"version": "0.0.4",
"description": "A signature pad implementation for react.",
"main": "lib/app.js",
"scripts": {
Expand Down

0 comments on commit 6c85df6

Please sign in to comment.