Skip to content

Commit

Permalink
message
Browse files Browse the repository at this point in the history
  • Loading branch information
Robert Ezra Stern committed Feb 5, 2018
1 parent d37607f commit f957975
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
4 changes: 4 additions & 0 deletions qb-reader.css
Original file line number Diff line number Diff line change
Expand Up @@ -199,4 +199,8 @@ main b{
.input-box input:focus{
color: #8dffec;
border-color: #8dffec;
}
main h2{
font-size: 22.5px;
margin-top: 5px;
}
7 changes: 6 additions & 1 deletion qb-reader.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,7 +355,12 @@ function displaySources(){
if(WRONG[i].type=="movie"){
$("#movie").append("<p>"+WRONG[i].title+"</p>");
}else{
$("#"+WRONG[i].series).append("<p>"+WRONG[i].title+"<b> (S<strong>"+WRONG[i].season+"</strong>E<strong>"+WRONG[i].episode+"</strong>)</b></p>");
if((WRONG[i].series != WRONG[i-1].series)
|| (i==0)
|| ((WRONG[i].series == WRONG[i-1].series)&&(WRONG[i].season != WRONG[i-1].season))){
$("#"+WRONG[i].series).append("<h2>Season "+WRONG[i].season+"</h2>");
}
$("#"+WRONG[i].series).append("<p>"+WRONG[i].title+"<b> (S"+WRONG[i].season+"E"+WRONG[i].episode+")</b></p>");
}
}
for(var i=0; i<$("main div").length; i++){
Expand Down

0 comments on commit f957975

Please sign in to comment.