Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. (function () {
  2. 'use strict';
  3.  
  4. angular.module('BlurAdmin.pages.cem', [])
  5. .config(routeConfig);
  6.  
  7. /** @ngInject */
  8. function routeConfig($stateProvider) {
  9. $stateProvider
  10. .state('cemdash', {
  11. url: '/cemdash',
  12. templateUrl: 'app/pages/cem/cemdash.html',
  13. title: 'CEM',
  14. sidebarMeta: {
  15. icon: 'ion-ios-people',
  16. order: 0,
  17. collapsed: true
  18. },
  19. });
  20. }
  21.  
  22. })();
  23.  
  24. <div class="row">
  25. <div id="map-container" class="col-lg-12 col-md-12 col-sm-12" ba-panel ba-panel-title="Location" ba-panel-class="medium-panel">
  26. <location-map></location-map>
  27. </div>
  28. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement