eaf7ce6a by Jeff Balicki

dd

1 parent 24c2c1f5
......@@ -258,39 +258,6 @@ $(window).on('load resize scroll', function() {
// function SaveToDisk(fileURL, fileName) {
// // for non-IE
// if (!window.ActiveXObject) {
// var save = document.createElement('a');
// save.href = fileURL;
// save.target = '_blank';
// save.download = fileName || 'unknown';
// var evt = new MouseEvent('click', {
// 'view': window,
// 'bubbles': true,
// 'cancelable': false
// });
// save.dispatchEvent(evt);
// (window.URL || window.webkitURL).revokeObjectURL(save.href);
// }
// // for IE < 11
// else if ( !! window.ActiveXObject && document.execCommand) {
// var _window = window.open(fileURL, '_blank');
// _window.document.close();
// _window.document.execCommand('SaveAs', true, fileName || fileURL)
// _window.close();
// }
// }
$(document).on("click",".start_a_contact",function() {
if ($(window).width() < 600) {
......@@ -467,6 +434,15 @@ $(window).on('load resize scroll', function() {
});
}
if ( '676' == event.detail.contactFormId ) {
if($(event.target).hasClass('invalid')) {
$('#exampleModal').find('form').show();
return;
}else{
$('#exampleModal').modal('hide');
}
}
}, false );
$(".n2-ss-text").each(function() {
......
......@@ -5,7 +5,7 @@
Author: the Understrap Contributors
Author URI: https://github.com/understrap/understrap-child/graphs/contributors
Template: understrap
Version: 1.1.30385
Version: 1.1.30386
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: understrap-child
......