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
3551301f
authored
2021-06-15 13:07:27 -0400
by
Jeff Balicki
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
removed .live
1 parent
e350a093
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
4 deletions
com/Branding/scripts/jquery.colorbox.js
com/HybridGallery/assets/scripts/hybrid.gallery.js
com/Notifications/views/create.php
com/Notifications/views/form.php
com/Branding/scripts/jquery.colorbox.js
View file @
3551301
...
...
@@ -371,7 +371,7 @@
// background graphics. The class can now can be removed.
$content
.
children
().
removeClass
(
'hover'
);
$
(
'.'
+
boxElement
).
live
(
'click'
,
function
(
e
)
{
$
(
'.'
+
boxElement
).
on
(
'click'
,
function
(
e
)
{
// checks to see if it was a non-left mouse-click and for clicks modified with ctrl, shift, or alt.
if
(
!
((
e
.
button
!==
0
&&
typeof
e
.
button
!==
'undefined'
)
||
e
.
ctrlKey
||
e
.
shiftKey
||
e
.
altKey
))
{
e
.
preventDefault
();
...
...
com/HybridGallery/assets/scripts/hybrid.gallery.js
View file @
3551301
...
...
@@ -174,7 +174,7 @@ jQuery(document).ready(function($) {
grabGalleryFeed
();
$
(
'.form-cancel'
).
live
(
'click'
,
function
()
{
$
(
'.form-cancel'
).
on
(
'click'
,
function
()
{
hideErrors
();
jQuery
(
'#TzHybridGallery_Control'
).
slideUp
();
});
...
...
com/Notifications/views/create.php
View file @
3551301
...
...
@@ -368,7 +368,7 @@ endforeach;
updateNotificationType();
$('.attachment').
live
('click', function(e) {
$('.attachment').
on
('click', function(e) {
e.preventDefault();
var $link = $(this);
var options = {
...
...
com/Notifications/views/form.php
View file @
3551301
...
...
@@ -351,7 +351,7 @@ use Tz\WordPress\Tools\Notifications\Settings;
updateNotificationType
();
$
(
'.attachment'
).
live
(
'click'
,
function
(
e
)
{
$
(
'.attachment'
).
on
(
'click'
,
function
(
e
)
{
e
.
preventDefault
();
var
$link
=
$
(
this
);
var
options
=
{
...
...
Please
register
or
sign in
to post a comment