all files / app/main/components/material-docs/demo-partials/fabToolbar/demoBasicUsage/ script.js

50% Statements 2/4
100% Branches 0/0
50% Functions 1/2
50% Lines 2/4
1 2 3 4 5 6 7 8 9 10 11 12 13 14                        
(function() {
  'use strict';
 
  angular.module('fabToolbarBasicUsageDemo', ['ngMaterial'])
    .controller('AppCtrl', function($scope) {
      $scope.isOpen = false;
 
      $scope.demo = {
        isOpen: false,
        count: 0,
        selectedDirection: 'left'
      };
    });
})();