简体   繁体   中英

Angular ng-view with sticky headers not working

I'm trying to use the sticky headers directive from: http://ngmodules.org/modules/sticky-headers but it doesn't seem to work with the combination of using ng-view.

When using the fsm directive as required, I'm getting an empty view:

angular.module('dashboard', ['fsm']).controller('installerController',
  [ '$scope', '$filter','$http','$log', '$location','$compile', 
    '$routeParams', 
    function($scope, $filter, $http, $log, $location, $compile, $routeParams) 

When not including the fsm directive, everything works fine:

angular.module('dashboard').controller('installerController', 
[ '$scope', '$filter','$http','$log', '$location','$compile',
  '$routeParams', 
   function($scope, $filter, $http, $log, $location, $compile, $routeParams)

Your help is much appreciated. Thanks.

The difference between the method angular.module(string) and angular.module(string, array[]) is that the first one loads a specific module and the second one creates a new angular module

Make sure that you only create your module once

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM