Skip to content

Commit

Permalink
ed
Browse files Browse the repository at this point in the history
  • Loading branch information
rosygupta committed Apr 17, 2016
2 parents b162752 + f9ddf02 commit baa1d40
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions model/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,10 @@





<!-- Right Side Panel -->

<div id="OutputBox">
<div id="top-title">
<h3>Heading</h3>
<div id="top-title"><h3>Water</h3>
</div>
<div id="InputVisualization"></div>
<div id="bottom-title">
Expand Down Expand Up @@ -222,7 +219,14 @@ <h3>E Score</h3>
return current_graph;
}


function update_graphs() {
var str = get_current_tab();
str = str.toLowerCase().replace(/\b[a-z]/g, function(letter) {
return letter.toUpperCase();
});
$("#top-title h3").html(str);

current_graph = $(".iron-selected").attr("href")
current_graph = current_graph.substring(1, current_graph.length);
//console.log(current_graph)
Expand Down

0 comments on commit baa1d40

Please sign in to comment.