|
|
@@ -114,3 +114,12 @@ $(document).ready(function(){
|
|
|
});
|
|
|
|
|
|
|
|
|
+/*============================
|
|
|
+ Defer img loading
|
|
|
+============================*/
|
|
|
+
|
|
|
+$(window).bind("load", function() {
|
|
|
+ $('img.defer').each(function() {
|
|
|
+ $(this).attr("src", $(this).data('src'));
|
|
|
+ });
|
|
|
+});
|