js bugfix -- missing parameter

This commit is contained in:
Kyle Mahan 2016-06-22 16:02:23 +00:00
parent f240808f3f
commit 4a2d4ad50d
2 changed files with 7 additions and 9 deletions

View file

@ -73,7 +73,7 @@ $(function(){
} }
}); });
$(".micropub-form .content").focus(function () { $(".micropub-form .content").focus(function (evt) {
$(this).animate({ height: "4em" }, 200); $(this).animate({ height: "4em" }, 200);
var $target = $(evt.target); var $target = $(evt.target);
}); });

View file

@ -6,11 +6,9 @@
"display": "standalone", "display": "standalone",
"theme_color": "#9b6137", "theme_color": "#9b6137",
"background_color": "#9b6137", "background_color": "#9b6137",
"icons": [ "icons": [{
{ "src": "/static/logo.png",
"src": "/static/logo.png", "sizes": "512x512",
"sizes": "512x512", "type": "image/png"
"type": "image/png", }]
}
]
} }