UNPKG
unserver-unify
Version:
latest (0.2.0)
0.2.0
unserver-unify
/
src
/
app
/
home
/
infopage.controller.js
10 lines
(8 loc)
•
258 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
; angular.
module
(
'bamboo'
).
controller
(
'InfoPageCtrl'
,
function
(
$state,$timeout,$scope,$stateParams
) { $scope.
info
=$stateParams.
info
; $scope.
error
=$stateParams.
error
; $timeout(
function
(
){ $state.
go
(
'index.home'
); },
3000
) });