diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/project/assets/fonts/fontawesome-webfont.svg | 2 | ||||
-rw-r--r-- | templates/project/assets/stylesheets/application.scss | 1 | ||||
-rw-r--r-- | templates/project/dashboards/layout.erb | 4 | ||||
-rw-r--r-- | templates/project/jobs/buzzwords.rb | 6 |
4 files changed, 6 insertions, 7 deletions
diff --git a/templates/project/assets/fonts/fontawesome-webfont.svg b/templates/project/assets/fonts/fontawesome-webfont.svg index d05688e..8716cac 100644 --- a/templates/project/assets/fonts/fontawesome-webfont.svg +++ b/templates/project/assets/fonts/fontawesome-webfont.svg @@ -652,4 +652,4 @@ <glyph unicode="" horiz-adv-x="1792" /> <glyph unicode="" horiz-adv-x="1792" /> </font> -</defs></svg>
\ No newline at end of file +</defs></svg> diff --git a/templates/project/assets/stylesheets/application.scss b/templates/project/assets/stylesheets/application.scss index 451f03e..9a7ec7c 100644 --- a/templates/project/assets/stylesheets/application.scss +++ b/templates/project/assets/stylesheets/application.scss @@ -255,4 +255,3 @@ h3 { .clearfix:before, .clearfix:after { content: "\0020"; display: block; height: 0; overflow: hidden; } .clearfix:after { clear: both; } .clearfix { zoom: 1; } - diff --git a/templates/project/dashboards/layout.erb b/templates/project/dashboards/layout.erb index eae9785..4aa5120 100644 --- a/templates/project/dashboards/layout.erb +++ b/templates/project/dashboards/layout.erb @@ -20,7 +20,7 @@ <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> @@ -29,4 +29,4 @@ <a href="#saving-instructions" id="save-gridster">Save this layout</a> <% end %> </body> -</html>
\ No newline at end of file +</html> diff --git a/templates/project/jobs/buzzwords.rb b/templates/project/jobs/buzzwords.rb index 2668d5a..7974dd9 100644 --- a/templates/project/jobs/buzzwords.rb +++ b/templates/project/jobs/buzzwords.rb @@ -1,9 +1,9 @@ -buzzwords = ['Paradigm shift', 'Leverage', 'Pivoting', 'Turn-key', 'Streamlininess', 'Exit strategy', 'Synergy', 'Enterprise', 'Web 2.0'] +buzzwords = ['Paradigm shift', 'Leverage', 'Pivoting', 'Turn-key', 'Streamlininess', 'Exit strategy', 'Synergy', 'Enterprise', 'Web 2.0'] buzzword_counts = Hash.new({ value: 0 }) SCHEDULER.every '2s' do random_buzzword = buzzwords.sample buzzword_counts[random_buzzword] = { label: random_buzzword, value: (buzzword_counts[random_buzzword][:value] + 1) % 30 } - + send_event('buzzwords', { items: buzzword_counts.values }) -end
\ No newline at end of file +end |