Skip to content

Commit

Permalink
Don't specify a name. Cleaned up parameter passing.
Browse files Browse the repository at this point in the history
  • Loading branch information
auxesis committed Jan 25, 2011
1 parent 0a6bbff commit ce1c2fa
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/visage-app/views/profile.haml
Expand Up @@ -10,10 +10,10 @@
window.addEvent('domready', function() {
var graph = new visageGraph('#{graph.id}', '#{graph.host}', '#{graph.plugin}', {
pluginInstance: '#{graph.instances.join(',')}',
name: '#{graph.plugin} on #{graph.host}',
start: '#{@start}',
#{ "baseurl: '" + ENV['VISAGE_APP_BASE_URL_PATH'].gsub(/^\//, '') + "'," if ENV['VISAGE_APP_BASE_URL_PATH'] }
finish: '#{@finish}'
//name: '#{graph.plugin} on #{graph.host}',
start: '#{@start}',
finish: '#{@finish}',
#{ "baseurl: '" + ENV['BASE_URL'].gsub(/^\//, '') if ENV['BASE_URL'] }
});
});
- if @profile.graphs.size == 0
Expand Down

0 comments on commit ce1c2fa

Please sign in to comment.