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 /lib/gallery.dialog.js | |
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 'lib/gallery.dialog.js')
-rw-r--r-- | lib/gallery.dialog.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/gallery.dialog.js b/lib/gallery.dialog.js index 04ab44de..51ebb21a 100644 --- a/lib/gallery.dialog.js +++ b/lib/gallery.dialog.js @@ -16,10 +16,10 @@ } $("#gDialog").dialog(self.options); - $("#gDialog").showLoading(); + $("#gDialog").gallery_show_loading(); $.get(sHref, function(data) { - $("#gDialog").html(data).showLoading(); + $("#gDialog").html(data).gallery_show_loading(); if ($("#gDialog form").length) { self._trigger("form_loaded", null, $("#gDialog form")); |