Advertisement
Guest User

Untitled

a guest
Apr 30th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. import {App, IonicApp, Platform, MenuController} from 'ionic-angular';
  2. import {StatusBar} from 'ionic-native';
  3. import * as _ from 'underscore/underscore'
  4.  
  5. @App({
  6. templateUrl: 'build/app.html',
  7. config: {}
  8. })
  9.  
  10. class MyApp {
  11. static get parameters() {
  12. return [[IonicApp], [Platform], [MenuController] ];
  13. }
  14.  
  15. constructor(app, platform, menu) {
  16. console.log(_.uniqueId()); // <--- undefined error.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement