diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e079bd48..6c6e5b36 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -37,7 +37,7 @@ have good reasons for rejecting. If you'd like to test and/or contribute please follow these instructions. -[Fork this repo on GitHub](https://github.com/twitter/twemoji.git/fork) +[Fork this repo on GitHub](https://github.com/jdecked/twemoji.git/fork) ### Setup diff --git a/README.md b/README.md index 0c6fd34d..c0d970e3 100644 --- a/README.md +++ b/README.md @@ -37,9 +37,9 @@ Following are all the methods exposed in the `twemoji` namespace. This is the main parsing utility and has 3 overloads per parsing type. -Although there are two kinds of parsing supported by this utility, we recommend you use [DOM parsing](https://github.com/twitter/twemoji#dom-parsing), explained below. Each type of parsing accepts a callback to generate an image source or an options object with parsing info. +Although there are two kinds of parsing supported by this utility, we recommend you use [DOM parsing](https://github.com/jdecked/twemoji#dom-parsing), explained below. Each type of parsing accepts a callback to generate an image source or an options object with parsing info. -The second kind of parsing is string parsing, explained in the legacy documentation [here](https://github.com/twitter/twemoji/blob/master/LEGACY.md#string-parsing). This is unrecommended because this method does not sanitize the string or otherwise prevent malicious code from being executed; such sanitization is out of scope. +The second kind of parsing is string parsing, explained in the legacy documentation [here](https://github.com/jdecked/twemoji/blob/master/LEGACY.md#string-parsing). This is unrecommended because this method does not sanitize the string or otherwise prevent malicious code from being executed; such sanitization is out of scope. #### DOM parsing @@ -59,7 +59,7 @@ var img = div.querySelector('img'); // note the div is preserved img.parentNode === div; // true -img.src; // https://cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/72x72/2764.png +img.src; // https://cdn.jsdelivr.net/gh/jdecked/twemoji@latest/assets/72x72/2764.png img.alt; // \u2764\uFE0F img.className; // emoji img.draggable; // false @@ -134,7 +134,7 @@ twemoji.parse(genericNode, { }); ``` -This will generate urls such `https://cdn.jsdelivr.net/gh/twitter/twemoji@latest/assets/svg/2764.svg` instead of using a specific size based image. +This will generate urls such `https://cdn.jsdelivr.net/gh/jdecked/twemoji@latest/assets/svg/2764.svg` instead of using a specific size based image. ## Utilities @@ -206,11 +206,11 @@ twemoji.parse(document.body, { ## Legacy API (V1) -If you're still using our V1 API, you can read our legacy documentation [here](https://github.com/twitter/twemoji/tree/master/LEGACY.md). +If you're still using our V1 API, you can read our legacy documentation [here](https://github.com/jdecked/twemoji/tree/master/LEGACY.md). ## Contributing -The contributing documentation can be found [here](https://github.com/twitter/twemoji/tree/master/CONTRIBUTING.md). +The contributing documentation can be found [here](https://github.com/jdecked/twemoji/tree/master/CONTRIBUTING.md). ## Attribution Requirements @@ -253,7 +253,7 @@ The goal of this project is to simply provide emoji for everyone. We definitely The rules for contributing are available in the `CONTRIBUTING.md` file. -Thank you to all of our [contributors](https://github.com/twitter/twemoji/graphs/contributors). +Thank you to all of our [contributors](https://github.com/jdecked/twemoji/graphs/contributors). ## License diff --git a/bower.json b/bower.json index a131d140..a9b75c18 100644 --- a/bower.json +++ b/bower.json @@ -12,8 +12,8 @@ "!LICENSE", "!README.md" ], - "twemoji": "git://github.com/twitter/twemoji.git#gh-pages", - "homepage": "https://github.com/twitter/twemoji", + "twemoji": "git://github.com/jdecked/twemoji.git#gh-pages", + "homepage": "https://github.com/jdecked/twemoji", "authors": [ "Twitter, Inc." ], diff --git a/component.json b/component.json index 7b51b0e5..3b8c81df 100644 --- a/component.json +++ b/component.json @@ -3,7 +3,7 @@ "name": "twemoji", "license": ["MIT", "CC-BY-4.0"], "description": "A Unicode standard based way to implement emoji across all platforms.", - "homepage": "https://github.com/twitter/twemoji", + "homepage": "https://github.com/jdecked/twemoji", "keywords": [ "emoji", "DOM", diff --git a/index.html b/index.html index 8df6b3f3..3fba9e44 100644 --- a/index.html +++ b/index.html @@ -35,7 +35,7 @@

Twem❤ji

Sharing Twitter emoji everywhere

Version 14.0 Is Out!

-

Grab me on GitHub ↗

+

Grab me on GitHub ↗

Tweet #TwemojiParty diff --git a/scripts/build.js b/scripts/build.js index 5ea04ae2..7321864a 100755 --- a/scripts/build.js +++ b/scripts/build.js @@ -1,7 +1,7 @@ #!/usr/bin/env node /*! Copyright Twitter Inc. and other contributors. Licensed under MIT *//* - https://github.com/twitter/twemoji/blob/gh-pages/LICENSE + https://github.com/jdecked/twemoji/blob/gh-pages/LICENSE */ // dependencies @@ -24,7 +24,7 @@ function createTwemoji() { 'var twemoji = (' + function ( /*! Copyright Twitter Inc. and other contributors. Licensed under MIT *//* - https://github.com/twitter/twemoji/blob/gh-pages/LICENSE + https://github.com/jdecked/twemoji/blob/gh-pages/LICENSE */ // WARNING: this file is generated automatically via @@ -47,7 +47,7 @@ function createTwemoji() { ///////////////////////// // default assets url, by default will be jsDelivr CDN - base: 'https://cdn.jsdelivr.net/gh/twitter/twemoji@$VERSION/assets/', + base: 'https://cdn.jsdelivr.net/gh/jdecked/twemoji@$VERSION/assets/', // default assets file extensions, by default '.png' ext: '.png', diff --git a/scripts/create-dist b/scripts/create-dist index d40f93d4..283bb8f5 100755 --- a/scripts/create-dist +++ b/scripts/create-dist @@ -1,7 +1,7 @@ #!/usr/bin/env node /*! Copyright Twitter Inc. and other contributors. Licensed under MIT *//* - https://github.com/twitter/twemoji/blob/gh-pages/LICENSE + https://github.com/jdecked/twemoji/blob/gh-pages/LICENSE */ const fs = require('fs-extra'); diff --git a/scripts/preview b/scripts/preview index 95ed8869..5dd1a0d8 100755 --- a/scripts/preview +++ b/scripts/preview @@ -1,7 +1,7 @@ #!/usr/bin/env node /*! Copyright Twitter Inc. and other contributors. Licensed under MIT *//* - https://github.com/twitter/twemoji/blob/gh-pages/LICENSE + https://github.com/jdecked/twemoji/blob/gh-pages/LICENSE */ // dependencies diff --git a/src/test/test.js b/src/test/test.js index 30aa2b49..ff20c287 100644 --- a/src/test/test.js +++ b/src/test/test.js @@ -1,6 +1,6 @@ /*! Copyright Twitter Inc. and other contributors. Licensed under MIT *//* - https://github.com/twitter/twemoji/blob/gh-pages/LICENSE + https://github.com/jdecked/twemoji/blob/gh-pages/LICENSE */ var base = twemoji.base; wru.test([{