Quote:
Originally Posted by gixxy
And also as a nit-picky programmer. The bit of Java code in the blog post has an error:
Code:
if (team4.department == "Programming") {
should be
Code:
if (team4.department.equals("Programming")) {
|
It's not necessary to do that in Javascript, in fact, I don't even know if String.equals is valid. Also, you could change the body background from
Code:
background:url(/assets/images/bg.png) no-repeat #212121
to
Code:
background:url(/assets/images/bg.png) no-repeat #212121 fixed
it makes it so the background doesn't scroll, and IMO, it looks better.
EDIT: forgot to tell you that the rest of the CSS is awesome
EDIT 2: never mind about the java stuff, I thought you had mistaken the Javascript for Java, i didn't see the actual Java code.