Skip to content
This repository has been archived by the owner on Nov 4, 2024. It is now read-only.

Commit

Permalink
Merge pull request #1 from korukugashi/korukugashi-patch-plugin-conta…
Browse files Browse the repository at this point in the history
…ct-group

Updated plugin  contact-group-excel-paste
  • Loading branch information
korukugashi authored Jul 31, 2019
2 parents cdfe5fb + b0cf16a commit ec8be09
Showing 1 changed file with 25 additions and 16 deletions.
41 changes: 25 additions & 16 deletions plugins/contact-group-excel-paste/js/excel_contact_group.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,29 @@
(function(window, $) {
$(function() {
$(window.document).on('paste', '.RL-PopupsContacts .contactValueInput', function() {
// trigger the process on click and paste
var $this = $(this);

function replaceGroup() {
$('li[data-inputosaurus][title*=","]').each(function (index, elem) {
var $elem = $(elem)
var title = $(elem).attr('title')
var cut = title.indexOf('<')
title = title.substr(cut + 1, title.length - cut - 2)
$elem.parents('ul').find('.ui-autocomplete-input').val(title)
$('.ui-autocomplete-input').trigger('blur')
})
setTimeout(function () {
$this.trigger('keyup');
});
}).on('keyup', '.RL-PopupsContacts .contactValueInput', function() {
var $this = $(this),
value = $this.val(),
match = value && value.match(/@/ig);
$('li[data-inputosaurus][title*=","]').find('a').trigger('click')
})
}

$('body').on('click', '.ui-autocomplete a', function () {
replaceGroup()
})

if (match && match.length > 1) {
$this.val($this.val().replace(/\n| /ig, ','));
}
});
});
}(window, $));
$(document).on('keydown', function (e) {
if (e.which === 13) {
setTimeout(function () {
replaceGroup()
})
}
})
})
}(window, $))

0 comments on commit ec8be09

Please sign in to comment.