Skip to content

Instantly share code, notes, and snippets.

@villander
Created August 28, 2015 20:39
Show Gist options
  • Save villander/1c311903b77b9595c36a to your computer and use it in GitHub Desktop.
Save villander/1c311903b77b9595c36a to your computer and use it in GitHub Desktop.
// Meu jade
//- Diretiva do gráfico de linhas
div#colGraph
graph-lines(api = "{months: dashboardCtrl.dados.months}")
// Minha diretiva
app.directive('graphLines', function () {
return {
scope: {
api: '='
},
restrict: 'AE',
templateUrl: '/painel/partials/painel/graphDashboard',
controller : function($scope){
$scope.$watch("api.months", function(newValue, oldValue) {
console.log($scope.api.months);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment