“ANGUALR JS zajęty podczas routingu” Kod odpowiedzi

ANGUALR JS zajęty podczas routingu

 app.directive('showDuringResolve', function($rootScope) {

      return {
         link: function(scope, element) {

              element.addClass('ng-hide');
              $rootScope.statechange =  true;

             var unregister = $rootScope.$on('$routeChangeStart', function() {
                element.removeClass('ng-hide');
                   $rootScope.statechange =  false;
            });

            scope.$on('$destroy', unregister);
          }
       };
     });
Victorious Vendace

ANGUALR JS zajęty podczas routingu

<div ng-view ng-show="statechange"></div>
  <div ng-show="!statechange" show-during-resolve class="alert alert-info">
      <strong>Loading.</strong>
      Please hold.</div>
Victorious Vendace

Odpowiedzi podobne do “ANGUALR JS zajęty podczas routingu”

Pytania podobne do “ANGUALR JS zajęty podczas routingu”

Więcej pokrewnych odpowiedzi na “ANGUALR JS zajęty podczas routingu” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu