Do not overwrite class attribute of content node

This commit is contained in:
georgeto 2018-10-15 15:05:02 +02:00
parent 051d7baaa6
commit 2aad1d5579

View file

@ -23,7 +23,7 @@ $('#content.app-tasks').attr('ng-app', 'Tasks');
$('#content.app-tasks').attr('ng-cloak');
$('#content.app-tasks').attr('ng-controller', 'AppController');
$('#content.app-tasks').attr('ng-click', 'closeAll($event)');
$('#content.app-tasks').attr('class', 'handler');
$('#content.app-tasks').addClass('handler');
angular.module('Tasks', ['ngRoute', 'ngAnimate', 'ui.select', 'ngSanitize', 'dndLists']).config([
'$provide', '$routeProvider', '$interpolateProvider', '$httpProvider',