forked from locomojis/Chromoji
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
95 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
Chromoji | ||
======== | ||
|
||
This is a Google Chrome extension for Windows and Linux that adds Mac OS X emoji to the web. | ||
The images are linked to the unicode standard: http://www.unicode.org/charts/PDF/U1F300.pdf | ||
This is a Google Chrome extension for Windows, OS X, and Linux that adds support | ||
for textual emoji, based on the Unicode standard: http://www.unicode.org/charts/PDF/U1F300.pdf | ||
A good test page is located on Wikipedia: https://en.wikipedia.org/wiki/Emoji | ||
|
||
This `master` branch has been abandoned for now; development continues on the `simple` branch. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,8 @@ | ||
Todo | ||
---- | ||
|
||
Add descriptions to all emoji in the locales file. | ||
Get better images for | ||
- 1f303 | ||
- 1f50a | ||
- 1f51d | ||
- 1f528 | ||
- 1f68b | ||
- 1f684 | ||
- 1f687 | ||
|
||
Get Private-Use Area and blacklisting options working. | ||
|
||
Get intelligent markup/style additions working. | ||
|
||
Eliminate dependence on jQuery. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,21 @@ | ||
(function optSet(window, undefined) { | ||
'use strict'; | ||
|
||
function loadOptions() { | ||
'use strict'; | ||
document.getElementById('fieldhidePrivate').checked = (localStorage.hidePrivate == 'true'); | ||
document.getElementById('fieldblacklist').value = localStorage.blacklist; | ||
} | ||
|
||
function saveOptions() { | ||
'use strict'; | ||
localStorage.hidePrivate = document.getElementById('fieldhidePrivate').checked; | ||
localStorage.blacklist = document.getElementById('fieldblacklist').value; | ||
} | ||
|
||
function cancelOptions() { | ||
'use strict'; | ||
window.close(); | ||
} | ||
|
||
function init() { | ||
'use strict'; | ||
document.getElementById('buttoncancel').addEventListener('click', cancelOptions, false); | ||
document.getElementById('buttonsave').addEventListener('click', saveOptions, false); | ||
loadOptions(); | ||
} | ||
|
||
window.addEventListener('load', init, false); | ||
document.getElementById('buttoncancel').addEventListener('click', cancelOptions, false); | ||
document.getElementById('buttonsave').addEventListener('click', saveOptions, false); | ||
loadOptions(); | ||
}(this)); |