// todoList frameworkModule.directive('appTodoList', ['$log', '$translate', function ($log, $translate) { 'use strict'; $log.debug('appTodoList.ctor()...'); return { restrict: 'A', templateUrl: '/app/dashboard/app-todo-list/app-todo-list.html' + '?_=' + Math.random(), replace: true, scope: false, link: function (scope, element) { //scope.todoDataSource = scope.widget.dataModel.items; } }; }]);