diff options
| author | Bharat Mediratta <bharat@menalto.com> | 2009-08-07 11:53:40 -0700 |
|---|---|---|
| committer | Bharat Mediratta <bharat@menalto.com> | 2009-08-07 11:53:40 -0700 |
| commit | e4eec71efa5f7b1902155a34f8655cebe523c358 (patch) | |
| tree | 4007222452e741db734ea975df74155a4feb95cb /themes/default/views | |
| parent | a5137f59722bcb4867ed4c863b34ddb71d7df3d9 (diff) | |
Rename gallery.common.js functions to conform to our naming standards
and have some basic namespacing:
showMessage --> gallery_show_message
vAlign --> gallery_valign
showLoading --> gallery_show_loading
Convert gallery.show_full_size.js to be a jQuery function and give it a namespace:
show_full_size --> gallery_show_full_size
Diffstat (limited to 'themes/default/views')
| -rw-r--r-- | themes/default/views/photo.html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/themes/default/views/photo.html.php b/themes/default/views/photo.html.php index bf4d9da3..48472170 100644 --- a/themes/default/views/photo.html.php +++ b/themes/default/views/photo.html.php @@ -5,7 +5,7 @@ <script> $(document).ready(function() { $(".gFullSizeLink").click(function() { - show_full_size("<?= $theme->item()->file_url() ?>", "<?= $theme->item()->width ?>", "<?= $theme->item()->height ?>"); + $.gallery_show_full_size("<?= $theme->item()->file_url() ?>", "<?= $theme->item()->width ?>", "<?= $theme->item()->height ?>"); return false; }); }); |
