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

Commit

Permalink
polymer-flex-panel: set isContainer on the prototype instead of as the
Browse files Browse the repository at this point in the history
attribute so it won't show up in the markup
  • Loading branch information
frankiefu committed Oct 8, 2013
1 parent 0c6a855 commit 3b49bab
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion polymer-flex-layout/polymer-flex-panel.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,13 @@
Use of this source code is governed by a BSD-style
license that can be found in the LICENSE file.
-->
<polymer-element name="polymer-flex-panel" extends="polymer-flex-layout" noscript isContainer>
<polymer-element name="polymer-flex-panel" extends="polymer-flex-layout" noscript>
<template>
<shadow></shadow>
</template>
<script>
Polymer('polymer-flex-panel', {
isContainer: true
});
</script>
</polymer-element>

0 comments on commit 3b49bab

Please sign in to comment.