Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Tenzing
/
Tz Tools
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
06468163
authored
2020-11-10 13:11:57 -0500
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
rr
1 parent
61c7767f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
2 deletions
com/Notifications/views/create.php
com/Notifications/views/create.php
View file @
0646816
...
...
@@ -428,11 +428,25 @@ endforeach;
jQuery
(
tinymce
.
get
(
'en_html'
).
getBody
()).
find
(
".toc"
).
click
(
function
()
{
jQuery
(
this
).
parent
().
remove
();
$this
=
jQuery
(
this
);
jQuery
.
alerts
.
okButton
=
'Yes'
;
jQuery
.
alerts
.
cancelButton
=
'No'
;
jConfirm
(
'Are you sure you want to delete??'
,
''
,
function
(
r
)
{
if
(
r
==
true
)
{
$this
.
parent
().
remove
();
}
})
});
jQuery
(
tinymce
.
get
(
'fr_html'
).
getBody
()).
find
(
".toc"
).
click
(
function
()
{
jQuery
(
this
).
parent
().
remove
();
$this
=
jQuery
(
this
);
jQuery
.
alerts
.
okButton
=
'Yes'
;
jQuery
.
alerts
.
cancelButton
=
'No'
;
jConfirm
(
'Are you sure you want to delete??'
,
''
,
function
(
r
)
{
if
(
r
==
true
)
{
$this
.
parent
().
remove
();
}
})
});
jQuery
(
'#execute_date'
).
datetimepicker
({
...
...
Please
register
or
sign in
to post a comment