I have my JavaScript with Angularjs like this :
...
var propertiesModule = angular.module('xxx.properties', []);
propertiesModule.controller('PropertiesCtrl', ['$scope', '$routeParams', 'PropertiesService', 'ApplicationService', 'PlatformService', 'Page', function ($scope, $routeParams, PropertiesService, ApplicationService, PlatformService, Page) {
...
}]);
I want to call a jQuery functionality like this
...
$("input[type=button]").click(function () {
    $("#wrapper tr").prettyTextDiff({
        cleanup: $("#cleanup").is(":checked")
    });
});
...
I put in end of my file but the functionality is not executed, why?