From 54e9591f403d82abd143be5787d065dd0fa6bd4c Mon Sep 17 00:00:00 2001 From: Godson Ukpere Date: Sun, 3 Jul 2016 18:45:10 +0100 Subject: [PATCH 1/2] chore(README): Correct typo in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f8ff0a4b6..e3b45ac83 100644 --- a/README.md +++ b/README.md @@ -53,7 +53,7 @@ Global|Specific |Type |Values | Description event | data-event | String | e.g. click | custom event to trigger tooltip eventOff | data-event-off | String | e.g. click | custom event to hide tooltip (only makes effect after setting event attribute) globalEventOff | | 'string'| e.g. click| global event to hide tooltip (global only) - isCapture | data-iscapture | Bool | true, false | when set to ture, custom event's propagation mode will be capture + isCapture | data-iscapture | Bool | true, false | when set to true, custom event's propagation mode will be capture offset | data-offset | Object | top, right, bottom, left | `data-offset="{'top': 10, 'left': 10}"` for specific and `offset={{top: 10, left: 10}}` for global multiline | data-multiline | Bool | true, false | support `
`, `
` to make multiline class | data-class | String | | extra custom class, can use !important to overwrite react-tooltip's default class From c72615e0e8671df08c568f819a9ca06ecd68f3ac Mon Sep 17 00:00:00 2001 From: Godson Ukpere Date: Sun, 3 Jul 2016 21:04:33 +0100 Subject: [PATCH 2/2] chore(README): Correct typo in README.md 2 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e3b45ac83..87f524a64 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ You can import `node_modules/react-tooltip/standalone/react-tooltip.min.js` into Notes: * The tooltip is using `type: dark` `place: top` `effect: float` as **default** attribute, you don't have to add these options if you don't want to change default * The option you set on `` component will be implemented on every tooltip in a same page: `` -* The option you set on specific elecment, for example: `` will only make effect on this specific tooltip +* The option you set on specific element, for example: `` will only make effect on this specific tooltip Check example: [React-tooltip Test](http://wwayne.com/react-tooltip)