Skip to content
Snippets Groups Projects
Commit 75d7eff2 authored by Uma's avatar Uma
Browse files

Fixes #1370 Send,Save email modals

parent 357702f0
No related branches found
No related tags found
No related merge requests found
......@@ -1312,6 +1312,7 @@ $languageStrings = array(
'LBL_VTIGER6_RETIREMENT_NOTICE' => 'This version will be retired on Feb 15th 2016',
'ModTracker' => 'Updates',
'LBL_MAIL_SENT_SUCCESSFULLY' => 'Mail Sent Successfully',
'LBL_MAIL_SAVED_SUCCESSFULLY' => 'Mail Saved Successfully',
'LBL_FAILED_TO_SEND' => 'Failed to Send',
'LBL_ESSENTIALS' => 'Essentials',
......
......@@ -16,7 +16,11 @@
<div class="modal-body">
{if $SUCCESS}
<div class="mailSentSuccessfully" data-relatedload="{$RELATED_LOAD}">
{vtranslate('LBL_MAIL_SENT_SUCCESSFULLY')}
{if $FLAG eq 'SENT'}
{vtranslate('LBL_MAIL_SENT_SUCCESSFULLY')}
{else}
{vtranslate('LBL_MAIL_SAVED_SUCCESSFULLY')}
{/if}
</div>
{if $FLAG}
<input type="hidden" id="flag" value="{$FLAG}">
......
......@@ -446,10 +446,10 @@ jQuery.Class("Vtiger_Helper_Js",{
var cb = params.cb;
var container = jQuery('.myModal');
container.on('hidden.bs.modal',function() {
container.one('hidden.bs.modal',function() {
container.html('');
window.onbeforeunload = null;
});
});
if(typeof cb === "function") {
container.off('shown.bs.modal');
......@@ -793,6 +793,13 @@ jQuery.Class("Vtiger_Helper_Js",{
if(typeof params === "undefined") {
params = {};
}
// we should hide all existing modal's
var hideModals = (typeof params.hideModals !== 'undefined') ? params.hideModals : true;
if(hideModals) {
this.hideModal();
}
var defaultParams = app.helper.defaultModalParams();
params = jQuery.extend(defaultParams,params);
......@@ -800,9 +807,16 @@ jQuery.Class("Vtiger_Helper_Js",{
if(jQuery('#popupModal').length) return;
var container = jQuery('<div id="popupModal" class="modal"></div>');
container.on('hidden.bs.modal',function() {
container.html('').remove();
});
container.on('hidden.bs.modal',function() {
/**
* if tabindex = -1 then browser will set focus to that element.
* Loading another modal(this has tabindex = -1) on a modal is not moving the focus to new modal.
* We can't remove tabindex from the modals in tpl. So, this is a work around(removing index on show and adding on hide).
*/
jQuery('#helpPageOverlay').attr('tabindex','-1');
container.html('');
window.onbeforeunload = null;
});
if(typeof cb === "function") {
container.off('shown.bs.modal');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment