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

Commit

Permalink
Moved the type information around.
Browse files Browse the repository at this point in the history
  • Loading branch information
jeffposnick committed Sep 30, 2014
1 parent d0677d1 commit 54ad9ef
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions elements/core-doc-page.html
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ <h3 id="{{data.name}}.attributes">Attributes</h3>
<template repeat="{{attribute in data.attributes}}">
<div class="details" horizontal layout>
<div class="details-name" flex id="{{data.name}}.attributes.{{attribute.name}}">
<p><code>&lt;<em>{{attribute.type}}</em>&gt; {{attribute.name}}</code></p>
<p><code>{{attribute.name}}</code></p>
</div>
<div class="details-info" flex three>
<p layout horizontal center justified hidden?="{{!attribute.default}}">
<span class="default">default: <code>{{attribute.default}}</code></span>
<p layout horizontal center justified>
<code>&lt;<em>{{attribute.type}}</em>&gt;</code><span class="default" hidden?="{{!attribute.default}}">default: <code>{{attribute.default}}</code></span>
</p>
<marked-element text="{{attribute.description}}"></marked-element>
</div>
Expand All @@ -80,11 +80,11 @@ <h3 id="{{data.name}}.properties">Properties</h3>
<template repeat="{{property in data.properties}}">
<div class="details" horizontal layout>
<div class="details-name" flex id="{{data.name}}.properties.{{property.name}}">
<p><code>&lt;<em>{{property.type}}</em>&gt; {{property.name}}</code></p>
<p><code>{{property.name}}</code></p>
</div>
<div class="details-info" flex three>
<p layout horizontal center justified hidden?="{{!property.default}}">
<span class="default">default: <code>{{property.default}}</code></span>
<p layout horizontal center justified>
<code>&lt;<em>{{property.type}}</em>&gt;</code><span class="default" hidden?="{{!property.default}}">default: <code>{{property.default}}</code></span>
</p>
<marked-element text="{{property.description}}"></marked-element>
</div>
Expand Down

0 comments on commit 54ad9ef

Please sign in to comment.