diff --git a/src/js/storyJS.tw b/src/js/storyJS.tw index ecaf157acba3ee107f13ac6b11f87a15f88c6754..e3c27a179eb4fc0cd5e6df23b00be68ecdb277f1 100644 --- a/src/js/storyJS.tw +++ b/src/js/storyJS.tw @@ -928,6 +928,11 @@ window.mergeRules = function(rules) { if (applies) { + //Objects in JS in operaions "=" pass by reference, so we need completly new object to avoid mess up previous rules. + if ("object" == typeof rules[i][prop] && "object" != typeof combinedRule[prop]) + combinedRule[prop] = new Object(); + + //If we already have object - now we will process it's properties, but object itself should be skiped. if ("object" != typeof combinedRule[prop]) combinedRule[prop] = rules[i][prop];