Skip to content

Commit

Permalink
Update authors, version
Browse files Browse the repository at this point in the history
  • Loading branch information
mervick committed Aug 3, 2016
1 parent 7304890 commit 232efd2
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 13 deletions.
4 changes: 3 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"name": "emojionearea",
"homepage": "https://github.com/mervick/emojionearea",
"authors": [
"Andrey Izman <izmanw@gmail.com>"
"Andrey Izman <izmanw@gmail.com>",
"Klas Lundberg <klas.lundberg@instinct.se>",
"Merlin Mason <info@merlinmason.co.uk>"
],
"main": "dist/emojionearea.js",
"dependencies": {
Expand Down
8 changes: 8 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@
{
"name": "Andrey Izman",
"email": "izmanw@gmail.com"
},
{
"name": "Klas Lundberg",
"email": "klas.lundberg@instinct.se"
},
{
"name": "Merlin Mason",
"email": "info@merlinmason.co.uk"
}
],
"minimum-stability": "dev",
Expand Down
22 changes: 11 additions & 11 deletions dist/emojionearea.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
/*!
* EmojioneArea v3.0.4
* EmojioneArea v3.0.7
* https://github.com/mervick/emojionearea
* Copyright Andrey Izman and other contributors
* Released under the MIT license
* Date: 2016-08-02T07:54Z
* Date: 2016-08-03T00:11Z
*/
(function(document, window, $) {
'use strict';
Expand Down Expand Up @@ -527,7 +527,7 @@

var category = self.picker.find(".emojionearea-category[name=recent]");
var filter = self.picker.find(".emojionearea-filter-recent");

if (category.length) {
var emojis = getRecent();
if (emojis !== "") {
Expand All @@ -549,7 +549,7 @@
} else {
if (filter.hasClass("active")) {
filter.removeClass("active").next().addClass("active");
}
}
category.hide();
filter.hide();
}
Expand Down Expand Up @@ -770,7 +770,7 @@
var filter = self.picker.find(".emojionearea-filter-recent");
if (filter.hasClass("active")) {
filter.removeClass("active").next().addClass("active");
}
}
category.hide();
filter.hide();
}
Expand Down Expand Up @@ -920,7 +920,7 @@
maxCount: options.textcomplete.maxCount,
placement: options.textcomplete.placement
};

if (options.shortcuts) {
textcompleteOptions.onKeydown = function (e, commands) {
if (!e.ctrlKey && e.which == 13) {
Expand Down Expand Up @@ -950,11 +950,11 @@
},
cache: true,
index: 1
}
}
], textcompleteOptions);

if (options.textcomplete.placement) {
// Enable correct positioning for textcomplete
// Enable correct positioning for textcomplete
if (editor.data('textComplete').option.appendTo.css("position") == "static") {
editor.data('textComplete').option.appendTo.css("position", "relative");
}
Expand Down Expand Up @@ -985,7 +985,7 @@
//}, self.id === 1); // calcElapsedTime()
};
var emojioneVersion = window.emojioneVersion || '2.1.4';
var cdn = {
var cdn = {
defaultBase: "https://cdnjs.cloudflare.com/ajax/libs/emojione/",
base: null,
isLoading: false
Expand Down Expand Up @@ -1183,4 +1183,4 @@

$.fn.emojioneArea.defaults = getDefaultOptions();

}) (document, window, jQuery);
}) (document, window, jQuery);
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "emojionearea",
"version": "3.0.4",
"version": "3.0.7",
"description": "WYSIWYG-like EmojiOne Converter / Picker Plugin for jQuery",
"main": "dist/emojionearea.js",
"scripts": {
Expand All @@ -18,6 +18,10 @@
"emojionearea"
],
"author": "Andrey Izman <izmanw@gmail.com>",
"contributors": [
"Klas Lundberg <klas.lundberg@instinct.se>",
"Merlin Mason <info@merlinmason.co.uk>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mervick/emojionearea/issues"
Expand Down

0 comments on commit 232efd2

Please sign in to comment.