Skip to content

Commit

Permalink
Step 11.5: Added stub for messages attachment menu
Browse files Browse the repository at this point in the history
  • Loading branch information
dotansimha authored and DAB0mB committed Feb 26, 2017
1 parent e77d039 commit de5c4a5
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions client/imports/pages/messages/messages-attachments.ts
@@ -0,0 +1,15 @@
import { Component } from '@angular/core';
import { AlertController, Platform, ModalController, ViewController } from 'ionic-angular';
import template from './messages-attachments.html';

@Component({
template
})
export class MessagesAttachmentsComponent {
constructor(
private alertCtrl: AlertController,
private platform: Platform,
private viewCtrl: ViewController,
private modelCtrl: ModalController
) {}
}

0 comments on commit de5c4a5

Please sign in to comment.