Rename partial-zone to partial-cards

pull/16/merge
Paulus Schoutsen 2016-01-25 00:00:07 -08:00
parent 95f085a61b
commit c52ee12a09
4 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
<link rel='import' href='../../bower_components/polymer/polymer.html'>
<link rel='import' href='../../bower_components/paper-drawer-panel/paper-drawer-panel.html'>
<link rel='import' href='../../bower_components/iron-media-query/iron-media-query.html'>
<link rel='import' href='../layouts/partial-zone.html'>
<link rel='import' href='../layouts/partial-cards.html'>
<link rel='import' href='../layouts/partial-logbook.html'>
<link rel='import' href='../layouts/partial-history.html'>
<link rel='import' href='../layouts/partial-map.html'>
@ -31,7 +31,7 @@
<ha-sidebar drawer></ha-sidebar>
<template is='dom-if' if='[[isSelectedStates]]'>
<partial-zone main narrow='[[narrow]]' show-menu='[[showSidebar]]'></partial-zone>
<partial-cards main narrow='[[narrow]]' show-menu='[[showSidebar]]'></partial-cards>
</template>
<template is='dom-if' if='[[isSelectedLogbook]]'>
<partial-logbook main narrow='[[narrow]]' show-menu='[[showSidebar]]'></partial-logbook>

View File

@ -5,7 +5,7 @@ import nuclearObserver from '../util/bound-nuclear-behavior';
import removeInitMsg from '../util/remove-init-message';
require('../components/ha-sidebar');
require('../layouts/partial-zone');
require('../layouts/partial-cards');
require('../layouts/partial-logbook');
require('../layouts/partial-history');
require('../layouts/partial-map');

View File

@ -6,7 +6,7 @@
<link rel="import" href="../components/ha-cards.html">
<dom-module id="partial-zone">
<dom-module id="partial-cards">
<style>
:host {
display: block;

View File

@ -18,7 +18,7 @@ const {
} = hass;
export default new Polymer({
is: 'partial-zone',
is: 'partial-cards',
behaviors: [nuclearObserver],