Skip to content

Instantly share code, notes, and snippets.

@0x-r4bbit
Created October 14, 2015 18:58
Show Gist options
  • Save 0x-r4bbit/cfcec5315d8293611011 to your computer and use it in GitHub Desktop.
Save 0x-r4bbit/cfcec5315d8293611011 to your computer and use it in GitHub Desktop.
import {JoinFilterModule} from '../../common/join_filter';
import './country_info_table.tpl.html';
export let CountryInfoTableModule = angular.module('CountryInfoTable', [JoinFilterModule.name, 'templates'])
.directive('countryInfoTable', () => {
return {
restrict: 'E',
templateUrl: 'country_info_table.tpl.html',
scope: {},
bindToController: {
country: '='
},
controller: () => {},
controllerAs: 'ctrl'
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment