Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <mcihar@suse.cz>2013-04-15 16:08:45 +0400
committerMichal Čihař <mcihar@suse.cz>2013-04-15 16:10:53 +0400
commitc935413fcc47873d5d9335c6eed5a89a0047ff7c (patch)
treec6af09a7c2c43556b25b3e7fec9697cfa8bb6e3d /js/config.js
parentbdb70b833fd9419b50e340cf9377a4733da2424d (diff)
Various javascript fixes
- missing ; - confusing !
Diffstat (limited to 'js/config.js')
-rw-r--r--js/config.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/config.js b/js/config.js
index 50d0f99379..d08d39cd6a 100644
--- a/js/config.js
+++ b/js/config.js
@@ -606,8 +606,8 @@ function restoreField(field_id)
AJAX.registerOnload('config.js', function() {
$('div.tabs_contents')
- .delegate('.restore-default, .set-value', 'mouseenter', function(){$(this).css('opacity', 1)})
- .delegate('.restore-default, .set-value', 'mouseleave', function(){$(this).css('opacity', 0.25)})
+ .delegate('.restore-default, .set-value', 'mouseenter', function(){$(this).css('opacity', 1);})
+ .delegate('.restore-default, .set-value', 'mouseleave', function(){$(this).css('opacity', 0.25);})
.delegate('.restore-default, .set-value', 'click', function(e) {
e.preventDefault();
var href = $(this).attr('href');