diff options
author | Bharat Mediratta <bharat@menalto.com> | 2011-03-27 11:25:27 -0700 |
---|---|---|
committer | Bharat Mediratta <bharat@menalto.com> | 2011-03-27 11:25:27 -0700 |
commit | 65825c572a0db24036c855de01714c613a979550 (patch) | |
tree | 5b47f305074f4f7c065d8726dc3581bcddb1b5a0 /lib/gallery.dialog.js | |
parent | c791ae96d5bb28f39b26a0e556e10e636f97436c (diff) | |
parent | 12e81d081d412a052860f04902b28da4a460c3fa (diff) |
Merge branch 'master' of github.com:gallery/gallery3
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 ec187186..087b00ab 100644 --- a/lib/gallery.dialog.js +++ b/lib/gallery.dialog.js @@ -48,7 +48,7 @@ var content = ""; if (mimeType[1] == "application/json") { data = JSON.parse(data); - content = unescape(data.html); + content = data.html; } else { content = data; } @@ -160,7 +160,7 @@ } if (data.html) { - $("#g-dialog").html(unescape(data.html)); + $("#g-dialog").html(data.html); $("#g-dialog").dialog("option", "position", "center"); $("#g-dialog form :submit").removeClass("ui-state-disabled") .attr("disabled", null); |