diff --git a/ionic/components/list/test/repeat-headers/index.ts b/ionic/components/list/test/repeat-headers/index.ts new file mode 100644 index 0000000000..3ad6100272 --- /dev/null +++ b/ionic/components/list/test/repeat-headers/index.ts @@ -0,0 +1,15 @@ +import {App} from 'ionic/ionic'; + + +@App({ + templateUrl: 'main.html' +}) +class IonicApp { + constructor() { + this.people = [ + {"name": "Adam Bradley", "components": [ "app", "badge", "button", "card"]}, + {"name": "Max Lynch", "components": [ "checkbox", "content", "form"]}, + {"name": "Tim Lancina", "components": [ "tabs"]} + ]; + } +} diff --git a/ionic/components/list/test/repeat-headers/main.html b/ionic/components/list/test/repeat-headers/main.html new file mode 100644 index 0000000000..82d5b1319d --- /dev/null +++ b/ionic/components/list/test/repeat-headers/main.html @@ -0,0 +1,16 @@ +List Headers Borders + + + + + + {{person.name}} + + + {{component}} +
+ +
+
+
+