app-todo-list.js 476 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// 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;
        }
    };
}]);