mirror of
https://github.com/sismics/docs.git
synced 2025-12-14 10:16:21 +00:00
9 lines
196 B
JavaScript
9 lines
196 B
JavaScript
'use strict';
|
|
|
|
/**
|
|
* Document default controller.
|
|
*/
|
|
App.controller('DocumentDefault', function($scope, $state, Restangular) {
|
|
// Load app data
|
|
$scope.app = Restangular.one('app').get();
|
|
}); |