Skip to content
Snippets Groups Projects
Commit 218131d3 authored by Jan-Christoph Borchardt's avatar Jan-Christoph Borchardt
Browse files

fix leading decimal Scrutinizer coding style issue

parent e1868719
Branches
No related tags found
No related merge requests found
...@@ -270,11 +270,11 @@ OC.Settings.Apps = OC.Settings.Apps || { ...@@ -270,11 +270,11 @@ OC.Settings.Apps = OC.Settings.Apps || {
// draw attention to the newly added app entry // draw attention to the newly added app entry
// by flashing it twice // by flashing it twice
$('#header .menutoggle') $('#header .menutoggle')
.animate({opacity: .5}) .animate({opacity: 0.5})
.animate({opacity: 1}) .animate({opacity: 1})
.animate({opacity: .5}) .animate({opacity: 0.5})
.animate({opacity: 1}) .animate({opacity: 1})
.animate({opacity: .75}); .animate({opacity: 0.75});
if (!SVGSupport() && entry.icon.match(/\.svg$/i)) { if (!SVGSupport() && entry.icon.match(/\.svg$/i)) {
$(img).addClass('svg'); $(img).addClass('svg');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment