Replace npmcdn.com with unpkg.com

release
npmcdn-to-unpkg-bot 2016-09-05 15:29:33 +01:00
parent 33035669b6
commit d8c00463ee
2 changed files with 5 additions and 5 deletions

View File

@ -52,9 +52,9 @@ Examples of `emoji` object:
} }
``` ```
You can use [npmcdn](https://npmcdn.com/emoji-mart@0.2.0/sheets/) with the sheets included in this repo:<br> You can use [unpkg](https://unpkg.com/emoji-mart@0.2.0/sheets/) with the sheets included in this repo:<br>
https://npmcdn.com/emoji-mart@0.2.0/sheets/sheet_apple_64.png<br> https://unpkg.com/emoji-mart@0.2.0/sheets/sheet_apple_64.png<br>
https://npmcdn.com/emoji-mart@0.2.0/sheets/sheet_emojione_64.png https://unpkg.com/emoji-mart@0.2.0/sheets/sheet_emojione_64.png
### Emoji ### Emoji
```jsx ```jsx

View File

@ -49,7 +49,7 @@ class Example extends React.Component {
onClick={() => this.setState({ set: set })} onClick={() => this.setState({ set: set })}
{...props}> {...props}>
<Emoji <Emoji
sheetURL={`https://npmcdn.com/emoji-mart@0.2.1/sheets/sheet_${set}_32.png`} sheetURL={`https://unpkg.com/emoji-mart@0.2.1/sheets/sheet_${set}_32.png`}
size={24} size={24}
emoji='grinning' emoji='grinning'
/> />
@ -86,7 +86,7 @@ class Example extends React.Component {
emojiSize={this.state.emojiSize} emojiSize={this.state.emojiSize}
perLine={this.state.perLine} perLine={this.state.perLine}
skin={this.state.skin} skin={this.state.skin}
sheetURL={`https://npmcdn.com/emoji-mart@0.2.1/sheets/sheet_${this.state.set}_64.png`} sheetURL={`https://unpkg.com/emoji-mart@0.2.1/sheets/sheet_${this.state.set}_64.png`}
onClick={(emoji) => console.log(emoji)} onClick={(emoji) => console.log(emoji)}
/> />
} }