Skip to content

Commit 43084e6

Browse files
committed
fixed links and added fork info to readme
1 parent f7dfbfe commit 43084e6

File tree

2 files changed

+23
-22
lines changed

2 files changed

+23
-22
lines changed

README.md

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# Project is no longer maintained
2-
31
[![NPM version][npm-image]][npm-url]
42
[![Build Status][travis-image]][travis-url]
53
[![Dependency Status][deps-image]][deps-url]
@@ -12,16 +10,22 @@
1210

1311
ContextMenu in React with accessibility support. Live Examples can be found [here](//vkbansal.github.io/react-contextmenu/)
1412

13+
## Fork-INFO
14+
15+
This is just a fork of vkbansal/react-contextmenu.
16+
Because this project is no longer maintained we forked it to solve a react peer dependency issue.
17+
Thanks to [vkbansal](https://github.com/vkbansal) this his work!
18+
1519
## Table of contents
1620

17-
- [Installation](#installation)
18-
- [Browser Support](#browser-support)
19-
- [Usage](#usage)
20-
- [API](#api)
21-
- [FAQs](#faqs)
22-
- [Contributors](#contributors)
23-
- [Changelog](#changelog)
24-
- [License](#license)
21+
- [Installation](#installation)
22+
- [Browser Support](#browser-support)
23+
- [Usage](#usage)
24+
- [API](#api)
25+
- [FAQs](#faqs)
26+
- [Contributors](#contributors)
27+
- [Changelog](#changelog)
28+
- [License](#license)
2529

2630
## Installation
2731

@@ -38,6 +42,7 @@ yarn add react-contextmenu
3842
```
3943

4044
## Browser Support
45+
4146
- IE 11 and Edge >= 12
4247
- FireFox >= 38
4348
- Chrome >= 47
@@ -68,23 +73,22 @@ function MyApp() {
6873
</ContextMenuTrigger>
6974

7075
<ContextMenu id="same_unique_identifier">
71-
<MenuItem data={{foo: 'bar'}} onClick={this.handleClick}>
76+
<MenuItem data={{ foo: "bar" }} onClick={this.handleClick}>
7277
ContextMenu Item 1
7378
</MenuItem>
74-
<MenuItem data={{foo: 'bar'}} onClick={this.handleClick}>
79+
<MenuItem data={{ foo: "bar" }} onClick={this.handleClick}>
7580
ContextMenu Item 2
7681
</MenuItem>
7782
<MenuItem divider />
78-
<MenuItem data={{foo: 'bar'}} onClick={this.handleClick}>
83+
<MenuItem data={{ foo: "bar" }} onClick={this.handleClick}>
7984
ContextMenu Item 3
8085
</MenuItem>
8186
</ContextMenu>
82-
8387
</div>
8488
);
8589
}
8690

87-
ReactDOM.render(<MyApp myProp={12}/>, document.getElementById("main"));
91+
ReactDOM.render(<MyApp myProp={12} />, document.getElementById("main"));
8892
```
8993

9094
see [usage docs](./docs/usage.md) / [examples](./examples) for more details.
@@ -98,6 +102,7 @@ see [usage docs](./docs/usage.md) / [examples](./examples) for more details.
98102
[ALL FAQs](./docs/faq.md)
99103

100104
## Who's using react-contextmenu?
105+
101106
- [react-data-grid](https://github.com/adazzle/react-data-grid)
102107
- [teamup.com](https://teamup.com)
103108
- [Spotify Web Player](https://open.spotify.com)
@@ -116,15 +121,11 @@ For Changelog, see [releases](https://github.com/vkbansal/react-contextmenu/rele
116121

117122
[npm-url]: https://npmjs.org/package/react-contextmenu
118123
[npm-image]: http://img.shields.io/npm/v/react-contextmenu.svg?style=flat-square
119-
120124
[travis-url]: https://travis-ci.org/vkbansal/react-contextmenu
121125
[travis-image]: http://img.shields.io/travis/vkbansal/react-contextmenu/master.svg?style=flat-square
122-
123126
[deps-url]: https://david-dm.org/vkbansal/react-contextmenu
124127
[deps-image]: https://img.shields.io/david/vkbansal/react-contextmenu.svg?style=flat-square
125-
126128
[dev-deps-url]: https://david-dm.org/vkbansal/react-contextmenu
127129
[dev-deps-image]: https://img.shields.io/david/dev/vkbansal/react-contextmenu.svg?style=flat-square
128-
129130
[climate-url]: https://codeclimate.com/github/vkbansal/react-contextmenu
130131
[climate-image]: http://img.shields.io/codeclimate/github/vkbansal/react-contextmenu.svg?style=flat-square

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,12 @@
3939
"license": "MIT",
4040
"repository": {
4141
"type": "git",
42-
"url": "https://github.com/vkbansal/react-contextmenu.git"
42+
"url": "https://github.com/box-id/react-contextmenu.git"
4343
},
4444
"bugs": {
45-
"url": "https://github.com/vkbansal/react-contextmenu/issues"
45+
"url": "https://github.com/box-id/react-contextmenu/issues"
4646
},
47-
"homepage": "https://github.com/vkbansal/react-contextmenu",
47+
"homepage": "https://github.com/box-id/react-contextmenu",
4848
"dependencies": {
4949
"classnames": "^2.2.5",
5050
"object-assign": "^4.1.0"

0 commit comments

Comments
 (0)