Skip to content

Commit

Permalink
fix(templates): add template tabs ionic-team#8207
Browse files Browse the repository at this point in the history
  • Loading branch information
ramonornela committed Sep 26, 2016
1 parent d8ecf16 commit 9762ec0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/templates/tabs/html.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<ion-tabs>
$TAB_CONTENT
</ion-tabs>
3 changes: 3 additions & 0 deletions scripts/templates/tabs/scss.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.$FILENAME {

}
13 changes: 13 additions & 0 deletions scripts/templates/tabs/ts.tmpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
import { Component } from '@angular/core';
import { NavController } from 'ionic-angular';
$TAB_IMPORTS

@Component({
templateUrl: '$FILENAME.html'
})
export class $CLASSNAME {

$TAB_VARIABLES

constructor(public navCtrl: NavController) {}
}

0 comments on commit 9762ec0

Please sign in to comment.