Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
V
vtigercrm
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Admin message
Welcome to Vtiger Community. To gain access for account, please contact [ community @ vtiger.com ]
Show more breadcrumbs
Code80
vtigercrm
Commits
75d7eff2
Commit
75d7eff2
authored
4 years ago
by
Uma
Browse files
Options
Downloads
Patches
Plain Diff
Fixes #1370 Send,Save email modals
parent
357702f0
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
languages/en_us/Vtiger.php
+1
-0
1 addition, 0 deletions
languages/en_us/Vtiger.php
layouts/v7/modules/Emails/SendEmailResult.tpl
+5
-1
5 additions, 1 deletion
layouts/v7/modules/Emails/SendEmailResult.tpl
layouts/v7/resources/helper.js
+19
-5
19 additions, 5 deletions
layouts/v7/resources/helper.js
with
25 additions
and
6 deletions
languages/en_us/Vtiger.php
+
1
−
0
View file @
75d7eff2
...
...
@@ -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'
,
...
...
This diff is collapsed.
Click to expand it.
layouts/v7/modules/Emails/SendEmailResult.tpl
+
5
−
1
View file @
75d7eff2
...
...
@@ -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
}
"
>
...
...
This diff is collapsed.
Click to expand it.
layouts/v7/resources/helper.js
+
19
−
5
View file @
75d7eff2
...
...
@@ -446,10 +446,10 @@ jQuery.Class("Vtiger_Helper_Js",{
var
cb
=
params
.
cb
;
var
container
=
jQuery
(
'
.myModal
'
);
container
.
on
(
'
hidden.bs.modal
'
,
function
()
{
container
.
on
e
(
'
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
'
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment