Skip to content

Commit 8722eda

Browse files
committed
finally find a way to declear meta other than using JSON.
1 parent 253b65d commit 8722eda

File tree

9 files changed

+444
-303
lines changed

9 files changed

+444
-303
lines changed

Gruntfile.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module.exports = function(grunt) {
44
'connect': {
55
demo: {
66
options: {
7+
hostname: '*',
78
open: true,
89
keepalive: true
910
}

dist/aha-column.html

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<link rel="import" href="../../polymer/polymer.html">
2+
<polymer-element name="aha-column" attributes="name type sortable searchable required editable placeholder default data-choices hint">
3+
<template>
4+
</template>
5+
<script>
6+
Polymer('aha-column', {
7+
type: "string",
8+
sortable: true,
9+
searchable: true,
10+
required: false,
11+
editable: true
12+
});
13+
</script>
14+
</polymer-element>

0 commit comments

Comments
 (0)