diff options
author | mamouneyya <mamoun.diraneyya@gmail.com> | 2011-02-27 17:53:49 +0200 |
---|---|---|
committer | mamouneyya <mamoun.diraneyya@gmail.com> | 2011-02-27 17:53:49 +0200 |
commit | 5a966e40831da1d113b126dafb9a2112b637211b (patch) | |
tree | 3a3aeb54e4055a07c710bd3f48f2e51290f6c6f0 /lib/gallery.dialog.js | |
parent | 00772aaa62e6bce14e58e163ea72f386136c731d (diff) | |
parent | 3e80fe9228bcbfa01bf87da67a47cd3f284dff01 (diff) |
Merge remote-tracking branch 'gallery3/master'
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); |