Fix Jasmine test failure after bf76894f

Sequence content does not double-escaped anymore, and eval() usage was
also removed from the sequence module.
This commit is contained in:
Prem Sichanugrist
2012-06-05 16:47:46 -04:00
parent 970f6af385
commit 5991829723
2 changed files with 4 additions and 4 deletions

View File

@@ -16,7 +16,7 @@ class @Tab
onShow: (element, ui) =>
@$('section.ui-tabs-hide').html('')
@$("##{@tabId(ui.index)}").html(eval(@items[ui.index]['content']))
@$("##{@tabId(ui.index)}").html(@items[ui.index]['content'])
@element.trigger 'contentChanged'
tabId: (index) ->