Permalink
Please sign in to comment.
Browse files
Merge branch 'develop' of github.com:Ranks/emojify.js into develop
Conflicts: dist/css/data-uri/emojify.css dist/css/data-uri/emojify.min.css dist/css/sprites/emojify-emoticons.css dist/css/sprites/emojify-emoticons.min.css dist/css/sprites/emojify.css dist/css/sprites/emojify.min.css dist/images/sprites/emojify.png dist/images/sprites/emojify@2x.png
- Loading branch information...
Showing
with
21 additions
and 12 deletions.
- +14 −4 .npmignore
- +1 −1 bower.json
- +1 −1 dist/css/data-uri/emojify.css
- +1 −1 dist/css/data-uri/emojify.min.css
- +1 −2 dist/css/sprites/emojify-emoticons.css
- +1 −1 dist/css/sprites/emojify-emoticons.min.css
- +1 −1 gulpfile.js
- +1 −1 package.json
18
.npmignore
| @@ -1,6 +1,16 @@ | ||
| -* | ||
| -!dist | ||
| -!dist/* | ||
| -!README.md | ||
| +.bowerrc | ||
| +.editorconfig | ||
| +.gitattributes | ||
| +.gitignore | ||
| +.htaccess | ||
| +.jshintrc | ||
| +.travis.yml | ||
| +appveyor.yml | ||
| +index.html | ||
| + | ||
| + | ||
| +build/ | ||
| +src/ | ||
| +tests/ | ||
| !LICENSE.md | ||
| !LICENSE-IMAGES.md |
2
bower.json
2
dist/css/data-uri/emojify.css
1 addition,
1 deletion
not shown because the diff is too large. Please use a local Git client to view these changes.
2
dist/css/data-uri/emojify.min.css
1 addition,
1 deletion
not shown because the diff is too large. Please use a local Git client to view these changes.
3
dist/css/sprites/emojify-emoticons.css
2
dist/css/sprites/emojify-emoticons.min.css
| @@ -1 +1 @@ | ||
| -.emoji{background-image:url(../../images/sprites/emojify-emoticons.png);display:inline-block}@media (min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:3/2),(-webkit-min-device-pixel-ratio:1.5),(min-device-pixel-ratio:1.5),(min-resolution:1.5dppx){.emoji{background-image:url(../../images/sprites/emojify-emoticons@2x.png);background-size:180px 144px}}.emoji-broken_heart{background-position:-38px -2px;width:32px;height:32px}.emoji-confounded{background-position:-110px -2px;width:32px;height:32px}.emoji-flushed{background-position:-2px -38px;width:32px;height:32px}.emoji-frowning{background-position:-38px -38px;width:32px;height:32px}.emoji-grinning{background-position:-74px -2px;width:32px;height:32px}.emoji-heart{background-position:-74px -38px;width:32px;height:32px}.emoji-kissing_heart{background-position:-2px -74px;width:32px;height:32px}.emoji-mask{background-position:-38px -74px;width:32px;height:32px}.emoji-pensive{background-position:-74px -74px;width:32px;height:32px}.emoji-rage{background-position:-2px -2px;width:32px;height:32px}.emoji-relaxed{background-position:-110px -38px;width:32px;height:32px}.emoji-scream{background-position:-110px -74px;width:32px;height:32px}.emoji-smile{background-position:-2px -110px;width:32px;height:32px}.emoji-smirk{background-position:-38px -110px;width:32px;height:32px}.emoji-sob{background-position:-74px -110px;width:32px;height:32px}.emoji-stuck_out_tongue_closed_eyes{background-position:-110px -110px;width:32px;height:32px}.emoji-stuck_out_tongue_winking_eye{background-position:-146px -2px;width:32px;height:32px}.emoji-wink{background-position:-146px -38px;width:32px;height:32px} | ||
| +.emoji{background-image:url(../../images/sprites/emojify-emoticons.png);display:inline-block}@media (min--moz-device-pixel-ratio:1.5),(-o-min-device-pixel-ratio:3/2),(-webkit-min-device-pixel-ratio:1.5),(min-device-pixel-ratio:1.5),(min-resolution:1.5dppx){.emoji{background-image:url(../../images/sprites/emojify-emoticons@2x.png);background-size:180px 144px}}.emoji-broken_heart{background-position:-38px -2px;width:32px;height:32px}.emoji-confounded{background-position:-110px -2px;width:32px;height:32px}.emoji-flushed{background-position:-2px -38px;width:32px;height:32px}.emoji-frowning{background-position:-38px -38px;width:32px;height:32px}.emoji-grinning{background-position:-74px -2px;width:32px;height:32px}.emoji-heart{background-position:-74px -38px;width:32px;height:32px}.emoji-kissing_heart{background-position:-2px -74px;width:32px;height:32px}.emoji-mask{background-position:-38px -74px;width:32px;height:32px}.emoji-pensive{background-position:-74px -74px;width:32px;height:32px}.emoji-rage{background-position:-2px -2px;width:32px;height:32px}.emoji-relaxed{background-position:-110px -38px;width:32px;height:32px}.emoji-scream{background-position:-110px -74px;width:32px;height:32px}.emoji-smile{background-position:-2px -110px;width:32px;height:32px}.emoji-smirk{background-position:-38px -110px;width:32px;height:32px}.emoji-sob{background-position:-74px -110px;width:32px;height:32px}.emoji-stuck_out_tongue_closed_eyes{background-position:-110px -110px;width:32px;height:32px}.emoji-stuck_out_tongue_winking_eye{background-position:-146px -2px;width:32px;height:32px}.emoji-wink{background-position:-146px -38px;width:32px;height:32px} |
2
gulpfile.js
2
package.json
0 comments on commit
7f14622