Skip to content

Commit

Permalink
Fix defaults back to false for new settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Jun 27, 2019
1 parent 0ba19b4 commit 4bdbe92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/utils/settings.js
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ export const setCancelSyntheticClickEvents = function(useCancelSyntheticClickEve
* eliminates most of the tax of needing two elements due to the loss of
* type-extended templates as a result of the V1 specification changes.
*/
export let removeNestedTemplates = true;
export let removeNestedTemplates = false;

/**
* Sets `removeNestedTemplates` globally, to eliminate nested templates
Expand All @@ -292,7 +292,7 @@ export const setRemoveNestedTemplates = function(useCemoveNestedTemplates) {
* such as `modelForElement` will not be available for nodes stamped by
* `dom-if`.
*/
export let fastDomIf = true;
export let fastDomIf = false;

/**
* Sets `fastDomIf` globally, to put `dom-if` in a performance-optimized mode.
Expand Down

0 comments on commit 4bdbe92

Please sign in to comment.