diff options
author | Alex Legler <alex@a3li.li> | 2014-04-17 18:41:16 +0200 |
---|---|---|
committer | Alex Legler <alex@a3li.li> | 2014-04-17 18:41:16 +0200 |
commit | cd5e000195d4afaadaa227e9d6b92580d1573fed (patch) | |
tree | 1db74cf812c756ae515fcbc513e2610281723fdd /views/layout.erb | |
parent | Set <title> when displaying a notice (diff) | |
download | infra-status-cd5e000195d4afaadaa227e9d6b92580d1573fed.tar.gz infra-status-cd5e000195d4afaadaa227e9d6b92580d1573fed.tar.bz2 infra-status-cd5e000195d4afaadaa227e9d6b92580d1573fed.zip |
Implement starts_at
start_at marks the date when an event (maintenance usually) described in the notice starts.
This is then the date when effects like force_state are applied.
Diffstat (limited to 'views/layout.erb')
-rw-r--r-- | views/layout.erb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/views/layout.erb b/views/layout.erb index d43b914..c31a71a 100644 --- a/views/layout.erb +++ b/views/layout.erb @@ -122,6 +122,10 @@ var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript"; g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s); })(); + + jQuery(function($) { + $('.has-tooltip').tooltip() + }); </script> </body> </html> |