snappymail/plugins/excel-multirow-maillist-parser/js/parse_excel_list.js
2016-05-22 22:16:32 +03:00

22 lines
No EOL
352 B
JavaScript

(function(window, $) {
$(function() {
$(window.document).on('keyup', '.b-compose .b-header .inputosaurus-input input[type="text"]:first', function() {
var
$this = $(this),
value = $this.val()
;
if (value && value.match(/@/ig).length >= 2)
{
$this.val($this.val().replace(/\n| /ig, ','));
}
});
});
}(window, $))