diff --git a/clear_sky/js/helpers.js b/clear_sky/js/helpers.js new file mode 100644 index 0000000..975f287 --- /dev/null +++ b/clear_sky/js/helpers.js @@ -0,0 +1,11 @@ +$(document).ready(function() +{ + $("h1.title2").each(function() + { + if ($(this).is(":empty")) + { + $(this).closest("div").children("h1.title").css("line-height","35px"); + } + }); + +});