module.js 303 B

1234567891011121314151617
  1. angular.module('kibana.text', [])
  2. .controller('text', function($scope, $rootScope) {
  3. var _id = _.uniqueId();
  4. // Set and populate defaults
  5. var _d = {
  6. group : "default",
  7. content : "",
  8. style: {},
  9. }
  10. _.defaults($scope.panel,_d);
  11. $scope.init = function() {
  12. }
  13. $scope.init();
  14. })