]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/site/id.html.erb
Fix issue where iD would not take the full height of its iframe
[rails.git] / app / views / site / id.html.erb
index a38a81534355d77e54684bee2f6df25eb1dce7de..e4dbf2d5336d7ac80c87744890a4ab2866414fd2 100644 (file)
@@ -2,15 +2,24 @@
 <html>
 <head>
   <meta charset='utf-8'>
-  <%= stylesheet_link_tag 'id' %>
+  <%= stylesheet_link_tag "id" %>
   <!--[if !IE || gte IE 9]><!-->
-  <%= javascript_include_tag 'id' %>
+  <%= javascript_include_tag "id" %>
   <!-- <![endif]-->
+  <style type='text/css'>
+    /* apply document-level styling */
+    html, body {
+      width: 100%;
+      height: 100%;
+      margin: 0;
+      padding: 0;
+    }
+  </style>
 </head>
 <body>
 <% data = {} -%>
-<% if defined? ID_KEY %>
-<% token = @user.access_token(ID_KEY) %>
+<% if Settings.key?(:id_key) %>
+<% token = current_user.access_token(Settings.id_key) %>
 <% data[:token] = token.token -%>
 <% data[:token_secret] = token.secret -%>
 <% data[:consumer_key] = token.client_application.key -%>