Skip to content
Snippets Groups Projects
Select Git revision
  • master
  • gitlab_migration_1
  • dev
  • rml8
  • v1.0.6
  • v1.0.5
  • v1.0.4
  • v1.0.3
  • v1.0.2
  • v1.0.1
  • v1.0.0
  • v0.19.6
  • v0.19.5
  • v0.19.4
  • v0.19.3
  • v0.19.2
  • v0.19.1
  • v0.19.0
  • v0.18.3
  • v0.18.2
  • v0.18.1
  • v0.18.0
  • v0.17.6
  • v0.17.5
24 results

README.md

Blame
  • Forked from clients / Cesium-grp / Cesium
    Source project has a limited visibility.
    components.js 902 B
    angular.module('cesium.components', [])
    
      .component('csBadgeCertification', {
        bindings: {
          requirements: '=',
          parameters: '<',
          csId: '@'
        },
        templateUrl: 'templates/common/badge_certification_count.html'
      })
    
      .component('csBadgeGivenCertification', {
        bindings: {
          identity: '=',
          parameters: '<',
          csId: '@'
        },
        templateUrl: 'templates/common/badge_given_certification_count.html'
      })
    
      .component('csSortIcon', {
        bindings: {
          asc: '=',
          sort: '=',
          toggle: '<'
        },
        template:
        '<i class="ion-chevron-up" ng-class="{gray: !$ctrl.asc || $ctrl.sort != $ctrl.toggle}" style="position: relative; left: 5px; top:-5px; font-size: 9px;"></i>' +
        '<i class="ion-chevron-down" ng-class="{gray : $ctrl.asc || $ctrl.sort != $ctrl.toggle}" style="position: relative; left: -2.6px; top: 3px; font-size: 9px;"></i>'
      })
    
    ;