mirror of
https://github.com/the-djmaze/snappymail.git
synced 2025-01-08 07:48:02 +08:00
22 lines
No EOL
352 B
JavaScript
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, $)) |