From 0ae7bcaf7cafb08c157533060800143e24cebbad Mon Sep 17 00:00:00 2001 From: David Taylor Date: Fri, 10 Mar 2017 15:26:00 +0000 Subject: [PATCH] Explicitly define height in oembed JSON --- RIGS/rigboard.py | 1 + 1 file changed, 1 insertion(+) diff --git a/RIGS/rigboard.py b/RIGS/rigboard.py index f85c72fea..81cf564e6 100644 --- a/RIGS/rigboard.py +++ b/RIGS/rigboard.py @@ -61,6 +61,7 @@ def get(self, request, pk=None): 'html': ''.format(full_url), 'version': '1.0', 'type': 'rich', + 'height': '250' } json = simplejson.JSONEncoderForHTML().encode(data)