Skip to content

Commit

Permalink
informal title style changed
Browse files Browse the repository at this point in the history
  • Loading branch information
deepak1556 committed Sep 25, 2012
1 parent 3309d7f commit 6102e51
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions index.php
Expand Up @@ -484,6 +484,10 @@
<div id="casette_container"> <div id="casette_container">
<canvas id="element_casette" class="element_canvas"></canvas> <canvas id="element_casette" class="element_canvas"></canvas>
</div> </div>
<div id="fsr_container">
<canvas id="element_fsr" class="element_canvas"></canvas>
</div>
<div id="theme_play" class="play-pause"> <div id="theme_play" class="play-pause">
<img src="images/play.png"> <img src="images/play.png">
Expand Down
4 changes: 2 additions & 2 deletions js/main.js
Expand Up @@ -707,7 +707,7 @@
var k; var k;
str += '<div class="informalsx">'; str += '<div class="informalsx">';
if(x[j].title !== undefined && x[j].title !== "") if(x[j].title !== undefined && x[j].title !== "")
str += '<div class="inf_title '+ (x[j].title).replace(/[\(\)?'\s]/g, "") +'">' + x[j].title + "</div>"; str += '<h4 class="inf_title '+ (x[j].title).replace(/[\(\)?'\s]/g, "") +'">' + x[j].title + "</h4>";


if(x[j].link !== undefined) if(x[j].link !== undefined)
str += '<a href="'+x[j].link+'" target="_blank"><img src="'+x[j].source+'" /></a>'; str += '<a href="'+x[j].link+'" target="_blank"><img src="'+x[j].source+'" /></a>';
Expand All @@ -725,7 +725,7 @@
for(i in x) { for(i in x) {
var j; var j;


str += "<h3>" + i + "</h3>"; str += "<h2>" + i + "</h2>";
if(x[i].constructor == Array) if(x[i].constructor == Array)
str += displayInformals(x[i]); str += displayInformals(x[i]);


Expand Down

0 comments on commit 6102e51

Please sign in to comment.