1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-12 17:54:44 +02:00
This commit is contained in:
Ryan Cramer
2019-11-21 08:59:30 -05:00
parent 14803e22a8
commit 4656672c81
2 changed files with 5 additions and 2 deletions

View File

@@ -87,7 +87,9 @@ var ProcessWireAdmin = {
} }
}).on('click', '.ui-button', function() { }).on('click', '.ui-button', function() {
$(this).removeClass("ui-state-default").addClass("ui-state-active"); // .effect('highlight', {}, 100); $(this).removeClass("ui-state-default").addClass("ui-state-active"); // .effect('highlight', {}, 100);
}).on('click', 'a > button', function() { });
/*
.on('click', 'a > button', function() {
var $a = $(this).parent(); var $a = $(this).parent();
var target = $a.attr('target'); var target = $a.attr('target');
if(typeof target != "undefined" && target == '_blank') { if(typeof target != "undefined" && target == '_blank') {
@@ -97,6 +99,7 @@ var ProcessWireAdmin = {
window.location = $a.attr('href'); window.location = $a.attr('href');
} }
}); });
*/
}, },
/** /**

File diff suppressed because one or more lines are too long