Added missing pnut-butter import and removed unused imports
This commit is contained in:
parent
f34216213f
commit
126f00e165
1 changed files with 4 additions and 2 deletions
|
@ -1,10 +1,12 @@
|
||||||
import { Component, ViewChild, ChangeDetectorRef } from '@angular/core';
|
import { Component } from '@angular/core';
|
||||||
import { ViewController, NavController, NavParams, ModalController, Content, ToastController, PopoverController, Events } from 'ionic-angular';
|
import { ViewController, NavParams, ToastController, Events } from 'ionic-angular';
|
||||||
import { Storage } from '@ionic/storage';
|
import { Storage } from '@ionic/storage';
|
||||||
import { FileChooser } from '@ionic-native/file-chooser';
|
import { FileChooser } from '@ionic-native/file-chooser';
|
||||||
import { FilePath } from '@ionic-native/file-path';
|
import { FilePath } from '@ionic-native/file-path';
|
||||||
import { FileTransfer, FileUploadOptions, FileTransferObject } from '@ionic-native/file-transfer';
|
import { FileTransfer, FileUploadOptions, FileTransferObject } from '@ionic-native/file-transfer';
|
||||||
|
|
||||||
|
import * as pnut from 'pnut-butter';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'modal-newpost',
|
selector: 'modal-newpost',
|
||||||
templateUrl: 'new-post.html',
|
templateUrl: 'new-post.html',
|
||||||
|
|
Reference in a new issue