summaryrefslogtreecommitdiff
path: root/dashboards/layout.erb
diff options
context:
space:
mode:
Diffstat (limited to 'dashboards/layout.erb')
-rw-r--r--dashboards/layout.erb51
1 files changed, 51 insertions, 0 deletions
diff --git a/dashboards/layout.erb b/dashboards/layout.erb
new file mode 100644
index 0000000..5c8dfb8
--- /dev/null
+++ b/dashboards/layout.erb
@@ -0,0 +1,51 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ <meta charset="utf-8"/>
+ <meta name="description" content="">
+ <meta name="viewport" content="width=device-width">
+ <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
+
+ <title><%= yield_content(:title) %></title>
+
+ <!-- The javascript and css are managed by sprockets. The files can be found in the /assets folder-->
+ <script type="text/javascript" src="/assets/application.js"></script>
+ <link rel="stylesheet" href="/assets/application.css">
+
+ <link href='//fonts.googleapis.com/css?family=Open+Sans:300,400,600,700' rel='stylesheet' type='text/css'>
+ <link rel="icon" href="/assets/favicon.ico">
+
+
+</head>
+ <body>
+ <script>
+ // Redirect handler
+ (function() {
+ var delayInSeconds = 5;
+ var pageLoaded = Date.now();
+ var source = new EventSource('events')
+ source.addEventListener('message', function(e) {
+ var data = JSON.parse(e.data);
+ if (data.id === 'redirect' && typeof data.location != 'undefined') {
+ if (data.updatedAt - pageLoaded/1000 > delayInSeconds) {
+ window.location = data.location;
+ } else {
+ console.log('Refresh was too fast (or initial page load).');
+ }
+ }
+ });
+ })();
+ </script>
+ <div id="container">
+ <%= yield %>
+ </div>
+
+ <% if development? %>
+ <div id="saving-instructions">
+ <p>Paste the following at the top of <i><%= params[:dashboard] %>.erb</i></p>
+ <textarea id="gridster-code"></textarea>
+ </div>
+ <a href="#saving-instructions" id="save-gridster">Save this layout</a>
+ <% end %>
+ </body>
+</html>