summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-06-05 10:52:06 +0200
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-06-05 10:52:06 +0200
commit218131d30d6105d0bcd601ea955b258e3e88bdf1 (patch)
tree67df705fb1f49bc800047f6a15cbadd69504278a
parente18687199671255bc62f9e0c5bbdb942520ed8d2 (diff)
downloadnextcloud-server-218131d30d6105d0bcd601ea955b258e3e88bdf1.tar.gz
nextcloud-server-218131d30d6105d0bcd601ea955b258e3e88bdf1.zip
fix leading decimal Scrutinizer coding style issue
-rw-r--r--settings/js/apps.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings/js/apps.js b/settings/js/apps.js
index 4018f40861d..2539982be83 100644
--- a/settings/js/apps.js
+++ b/settings/js/apps.js
@@ -270,11 +270,11 @@ OC.Settings.Apps = OC.Settings.Apps || {
// draw attention to the newly added app entry
// by flashing it twice
$('#header .menutoggle')
- .animate({opacity: .5})
+ .animate({opacity: 0.5})
.animate({opacity: 1})
- .animate({opacity: .5})
+ .animate({opacity: 0.5})
.animate({opacity: 1})
- .animate({opacity: .75});
+ .animate({opacity: 0.75});
if (!SVGSupport() && entry.icon.match(/\.svg$/i)) {
$(img).addClass('svg');