From 1a07726dc4cc2fe1cf3d085b4d3f13e55192073f Mon Sep 17 00:00:00 2001 From: Max Lynch Date: Wed, 18 Mar 2015 12:33:06 -0500 Subject: [PATCH] Playground --- playground/basic-example/main.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/playground/basic-example/main.js b/playground/basic-example/main.js index aaa9be9ee0..8050f5b81b 100644 --- a/playground/basic-example/main.js +++ b/playground/basic-example/main.js @@ -10,6 +10,10 @@ import 'ionic/components/tabbar/mixins/android/android-tabbar'; url: 'main.html', directives: [Tabbar] }) -class PlaygroundMain {} +class PlaygroundMain { + constructor() { + console.log('Playground Start') + } +} bootstrap(PlaygroundMain)