Skip to content
This repository was archived by the owner on Mar 13, 2018. It is now read-only.

Commit 6b08976

Browse files
committed
add missing import and move isContainer to prototype
1 parent 1d0aa74 commit 6b08976

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

polymer-flex-layout/polymer-flex-panel.html

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,15 @@
33
Use of this source code is governed by a BSD-style
44
license that can be found in the LICENSE file.
55
-->
6-
<polymer-element name="polymer-flex-panel" noscript extends="polymer-flex-layout" isContainer>
6+
<link rel="import" href="polymer-flex-layout.html">
7+
8+
<polymer-element name="polymer-flex-panel" extends="polymer-flex-layout">
79
<template>
810
<shadow></shadow>
911
</template>
12+
<script>
13+
Polymer('polymer-flex-panel', {
14+
isContainer: true
15+
});
16+
</script>
1017
</polymer-element>

0 commit comments

Comments
 (0)