summaryrefslogtreecommitdiff
path: root/src/client/model/util.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/model/util.js')
-rw-r--r--src/client/model/util.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/client/model/util.js b/src/client/model/util.js
index 25d419bf..20472fda 100644
--- a/src/client/model/util.js
+++ b/src/client/model/util.js
@@ -106,11 +106,6 @@ define([ 'jquery', 'model/diff' ], function($, model_diff) {
var new_n_set = $.extend([], n_set);
var new_l_set = $.extend([], l_set);
- // filter out 'bubble' nodes
- new_n_set = new_n_set.filter(function(n) {
- return 'bubble' != n.type;
- });
-
new_n_set = $.map(new_n_set, function(n, _) {
return adapt_format_write_node(n);
})