diff options
author | Bharat Mediratta <bharat@menalto.com> | 2009-01-10 07:24:04 +0000 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2009-01-10 07:24:04 +0000 |
commit | ff5722bef014fc8a1a1f61fe7b180190fd65b45d (patch) | |
tree | 3e2bf792f67c428ae0872aef886b3c03902c0ce0 | |
parent | 7569b39802a855da92ebc1fd78a6343e7715746b (diff) |
Add missing semicolon
-rw-r--r-- | themes/default/js/ui.init.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/themes/default/js/ui.init.js b/themes/default/js/ui.init.js index 349b3155..8be523a5 100644 --- a/themes/default/js/ui.init.js +++ b/themes/default/js/ui.init.js @@ -14,16 +14,16 @@ $(document).ready(function() { // Album view only if ($("#gAlbumGrid").length) { // Vertical align thumbnails/metadata in album grid - $(".gItem").wrapInner("<div></div>") + $(".gItem").wrapInner("<div></div>"); $('.gItem div').vAlign(); } // Photo/Item item view only if ($("#gItem").length) { - // Ensure that sized image versions + // Ensure that sized image versions // fit inside their container sizedImage(); - + // Add scroll effect for links to named anchors $.localScroll({ queue: true, |