10 lines
No EOL
417 B
JavaScript
10 lines
No EOL
417 B
JavaScript
angular.module('app.controllers', [])
|
|
|
|
.controller('particleEditorCtrl', ['$scope', '$stateParams', // The following is the constructor function for this page's controller. See https://docs.angularjs.org/guide/controller
|
|
// You can include any angular dependencies as parameters for this function
|
|
// TIP: Access Route Parameters for your page via $stateParams.parameterName
|
|
function ($scope, $stateParams) {
|
|
|
|
|
|
}])
|
|
|