yesod-static-angular-0.1.0: test/angular/mod1/my-pane.js
module.directive("myPane", function() {
return {
require: '^myTabs',
restrict: 'E',
transclude: true,
controller: function($scope, ttt) {
console.log("hah");
},
scope: {
title: '@'
},
link: function(scope, element, attrs, tabsCtrl) {
tabsCtrl.addPane(scope);
},
templateUrl: 'paneid',
};
});