1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

wombat: add options to disable worker override, use mutation observers instead of setAttribute() override

This commit is contained in:
Ilya Kreymer 2015-04-27 00:43:10 -07:00
parent 904b4265e9
commit 160794e4ec

View File

@ -1102,14 +1102,17 @@ _WBWombat = (function() {
// Ajax
init_ajax_rewrite();
init_worker_override();
if (!wb_opts.skip_disable_worker) {
init_worker_override();
}
// Init mutation observer (for style only)
init_mutation_obs();
// setAttribute
if (!wb_opts.skip_setAttribute) {
init_setAttribute_override(true);
init_setAttribute_override(wb_opts.use_attr_observers);
}
// ensure namespace urls are NOT rewritten
init_createElementNS_fix();