Skip to content

Commit

Permalink
move mutable data mixin to be loaded by polymer.html
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Mar 7, 2017
1 parent ea392e3 commit 7cebe12
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/legacy/class.html
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
}
}
} else {
Polymer._warn('behavior is null, check for missing or 404 import');
console.warn('behavior is null, check for missing or 404 import');
}
}
return list;
Expand Down
1 change: 0 additions & 1 deletion lib/legacy/legacy-element-mixin.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
<link rel="import" href="../utils/import-href.html">
<link rel="import" href="../utils/render-status.html">
<link rel="import" href="../utils/unresolved.html">
<link rel="import" href="mutable-data-behavior.html">
<link rel="import" href="polymer.dom.html">

<script>
Expand Down
2 changes: 2 additions & 0 deletions polymer.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
<link rel="import" href="lib/elements/array-selector.html">
<!-- custom-style -->
<link rel="import" href="lib/elements/custom-style.html">
<!-- bc behaviors -->
<link rel="import" href="lib/legacy/mutable-data-behavior.html">
<script>
// bc
Polymer.Base = Polymer.LegacyElementMixin(HTMLElement).prototype;
Expand Down
3 changes: 0 additions & 3 deletions test/unit/property-effects-elements.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
Code distributed by Google as part of the polymer project is also
subject to an additional IP rights grant found at http://polymer.github.io/PATENTS.txt
-->
<link rel="import" href="../../lib/legacy/mutable-data-behavior.html">
<link rel="import" href="../../lib/mixins/mutable-data.html">

<dom-module id="x-basic">
<template>
<div id="boundChild"
Expand Down

0 comments on commit 7cebe12

Please sign in to comment.