mirror of
https://github.com/wahyd4/Libr-mobile.git
synced 2026-08-09 12:55:56 +10:00
11 lines
251 B
CoffeeScript
11 lines
251 B
CoffeeScript
libr = angular.module('libr.controllers.main', ['ionic'])
|
|
|
|
class MainController
|
|
@$inject: ['$scope', '$location', '$ionicModal', '$state']
|
|
|
|
constructor: (@$scope, @$location, @$ionicModal, @$state) ->
|
|
|
|
libr.controller 'MainCtrl', MainController
|
|
|
|
|