Updated Branches: refs/heads/master 80ad7dd93 -> c99a3c6ee
CS-16197: cloudstack UI - Tags - output encoding. Project: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/commit/c99a3c6e Tree: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/tree/c99a3c6e Diff: http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/diff/c99a3c6e Branch: refs/heads/master Commit: c99a3c6ee9a67b5da68f1cc516c297e9522f0d3c Parents: 80ad7dd Author: Jessica Wang <[email protected]> Authored: Thu Sep 27 16:15:29 2012 -0700 Committer: Jessica Wang <[email protected]> Committed: Thu Sep 27 17:40:43 2012 -0700 ---------------------------------------------------------------------- ui/scripts/ui/widgets/tagger.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/c99a3c6e/ui/scripts/ui/widgets/tagger.js ---------------------------------------------------------------------- diff --git a/ui/scripts/ui/widgets/tagger.js b/ui/scripts/ui/widgets/tagger.js index 53dd515..f996f33 100644 --- a/ui/scripts/ui/widgets/tagger.js +++ b/ui/scripts/ui/widgets/tagger.js @@ -88,7 +88,7 @@ }, tagItem: function(title, onRemove, data) { var $li = $('<li>'); - var $label = $('<span>').addClass('label').html(title); + var $label = $('<span>').addClass('label').html(_s(title)); var $remove = $('<span>').addClass('remove').html('X'); $remove.click(function() {
