css fix and also modernizr fallback
This commit is contained in:
parent
f211afc523
commit
c66d1fad20
File diff suppressed because one or more lines are too long
|
@ -1,9 +1,6 @@
|
|||
/* Reset and basic styles */
|
||||
|
||||
body {
|
||||
font-size: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
|
|
|
@ -42,5 +42,11 @@
|
|||
</div>
|
||||
|
||||
<script type="text/javascript">
|
||||
var gt = new GalleryTheater();
|
||||
if(typeof Modernizr == "undefined"){
|
||||
var script = $("<script>");
|
||||
script.attr("src","/assets/modernizr.js");
|
||||
$("head").append(script);
|
||||
}
|
||||
var gt = new GalleryTheater();
|
||||
|
||||
</script>
|
Loading…
Reference in New Issue