Skip to content

Commit

Permalink
Step 12.5: Added stub for messages attachment menu
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and darkbasic committed Jun 13, 2017
1 parent 17f3083 commit 359edfb
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/pages/messages/messages-attachments.ts
@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
import { AlertController, Platform, ModalController, ViewController } from 'ionic-angular';

@Component({
selector: 'messages-attachments',
templateUrl: 'messages-attachments.html'
})
export class MessagesAttachmentsComponent {
constructor(
private alertCtrl: AlertController,
private platform: Platform,
private viewCtrl: ViewController,
private modelCtrl: ModalController
) {}
}

0 comments on commit 359edfb

Please sign in to comment.