diff --git a/static/js/appDialog.js b/static/js/appDialog.js index d276e48..3ed85f1 100644 --- a/static/js/appDialog.js +++ b/static/js/appDialog.js @@ -56,11 +56,9 @@ oml.ui.appDialog = function() { $content.append(oml.ui.contactForm()); } else { Ox.get('/static/html/app.html', function(html) { - var $html = $('
'), - strings = {}; - $html.html(Ox.formatString(html, strings)); - var section = $html.find('#' + id).html(); - $content.html('

' + title + '

' + section + '

'); + var $html = $('
').html(html), + section = $html.find('#' + id).html(); + $content.html('

' + title + '

' + section); }); } $('
')