| 1234567891011121314151617 |
- /**
- * A pane that displays/edits unit objects
- */
- (function() {
- (function() {
- try {return angular.module('ieat.ui.editors')}
- catch {return angular.module('ieat.ui.editors', ['ndbDatabase', 'Units'])}}
- )().component('unitEditor', {
- templateUrl: 'static/templates/unitEditor.html',
- bindings: {
- unit: '<'
- },
- controller: ['$scope', function($scope) {
- $scope.unitTypes = ["Mass", "Volume", "Count"];
- }]
- });
- })();
|