Skip to content

Instantly share code, notes, and snippets.

@Dubiy
Last active February 16, 2016 08:14
Show Gist options
  • Save Dubiy/0acd8d707ff03590ed2c to your computer and use it in GitHub Desktop.
Save Dubiy/0acd8d707ff03590ed2c to your computer and use it in GitHub Desktop.
Angular demo app for symfony2 dashboard
angular.module('DemoEkBlog', [
'ui.bootstrap',
'ui.tinymce',
'angularModalService',
'ngFileUpload'
])
.controller('BaseCtrl', ['$rootScope', BaseCtrl])
;
function BaseCtrl($rootScope) {
$rootScope.spinner = false;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment