Skip to content

Instantly share code, notes, and snippets.

@pr0t3us
Created February 15, 2016 09:28
Show Gist options
  • Save pr0t3us/770cd97fef8e93f5f16a to your computer and use it in GitHub Desktop.
Save pr0t3us/770cd97fef8e93f5f16a to your computer and use it in GitHub Desktop.
index.html
<script src="scripts/components/map/directives/tripDetailMap.js"></script>
<tripDetailMap> </tripDetailMap>
angular.module('tripDetailMap', [])
.directive('tripDetailMap', function () {
return {
restrict: 'EA',
controller: function ($scope) {
console.log("app.directives.tripDetailMap " + "controller");
alert('controller');
}
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment