js bugfix -- missing parameter
This commit is contained in:
parent
f240808f3f
commit
4a2d4ad50d
2 changed files with 7 additions and 9 deletions
|
@ -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);
|
||||||
});
|
});
|
||||||
|
|
|
@ -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",
|
}]
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue