Created
October 14, 2015 18:58
-
-
Save 0x-r4bbit/cfcec5315d8293611011 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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