Browse Source

Eval script elemtents in HTML body response

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
tags/v12.0.0beta3
Lukas Reschke 7 years ago
parent
commit
93994b1320
No account linked to committer's email address
1 changed files with 7 additions and 0 deletions
  1. 7
    0
      apps/updatenotification/js/admin.js

+ 7
- 0
apps/updatenotification/js/admin.js View File

@@ -32,6 +32,13 @@ $(document).ready(function(){
var body = $('body');
$('head').remove();
body.html(data);

// Eval the script elements in the response
var dom = $(data);
dom.filter('script').each(function() {
eval(this.text || this.textContent || this.innerHTML || '');
});

body.removeAttr('id');
body.attr('id', 'body-settings');
}

Loading…
Cancel
Save