|
Server IP : 111.118.215.156 / Your IP : 216.73.216.167 Web Server : Apache System : Linux md-in-26.webhostbox.net 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : azasoqqa ( 1858) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/azasoqqa/public_html/vsrcbse.com/admin/javascript/pages/ |
| [ Home ] | [ C0mmand ] | [ Upload File ] |
|---|
/*! ========================================================================
* email.js
* Page/renders: page-email.html
* Plugins used: summernote, gritter, selectize
* ======================================================================== */
$(function () {
// Gritter
// ================================
setTimeout(function () {
$.gritter.add({
title: "You have (3) unread message",
text: "This will fade out after a certain amount of time. Vivamus eget tincidunt velit.",
sticky: false
});
}, 3000);
// Magnific Popup
// ================================
$("#photo-album").magnificPopup({
delegate: ".magnific",
type: "image",
gallery: {
enabled: true
}
});
// Summernote
// ================================
$(".summernote").summernote({
height: 200,
toolbar: [
["style", ["style"]],
["style", ["bold", "italic", "underline", "clear"]],
["fontsize", ["fontsize"]],
["color", ["color"]],
["para", ["ul", "ol", "paragraph"]],
["height", ["height"]],
["table", ["table"]]
]
});
// Contact select
// ================================
(function () {
var REGEX_EMAIL = "([a-z0-9!#$%&\'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&\'*+/=?^_`{|}~-]+)*@" +
"(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?)";
var formatName = function (item) {
return $.trim((item.first_name || '') + ' ' + (item.last_name || ''));
};
// contact
$("#selectize-contact").selectize({
persist: false,
maxItems: null,
valueField: "email",
labelField: "name",
searchField: ["first_name", "last_name", "email"],
sortField: [{
field: "first_name",
direction: "asc"
}, {
field: "last_name",
direction: "asc"
}],
options: [{
email: "nikola@tesla.com",
first_name: "Nikola",
last_name: "Tesla"
}, {
email: "brian@thirdroute.com",
first_name: "Brian",
last_name: "Reavis"
}, {
email: "pampersdry@gmail.com",
first_name: "John",
last_name: "Pozy"
}],
render: {
item: function (item, escape) {
var name = formatName(item);
return "<div>" +
(name ? "<span class=\"name\">" + escape(name) + "</span>" : "") +
(item.email ? "<small class=\"text-muted ml10\">" + escape(item.email) + "</small>" : "") +
"</div>";
},
option: function (item, escape) {
var name = formatName(item);
var label = name || item.email;
var caption = name ? item.email : null;
return "<div>" +
"<span class=\"text-primary\">" + escape(label) + "</span><br/>" +
(caption ? "<small class=\"text-muted\">" + escape(caption) + "</small>" : "") +
"</div>";
}
},
create: function (input) {
if ((new RegExp("^" + REGEX_EMAIL + "$", "i")).test(input)) {
return {
email: input
};
}
var match = input.match(new RegExp("^([^<]*)\<" + REGEX_EMAIL + "\>$", "i"));
if (match) {
var name = $.trim(match[1]);
var pos_space = name.indexOf(" ");
var first_name = name.substring(0, pos_space);
var last_name = name.substring(pos_space + 1);
return {
email: match[2],
first_name: first_name,
last_name: last_name
};
}
alert("Invalid email address.");
return false;
}
});
})();
});