Plato on Github
Report Home
directives/change_src.js
Maintainability
78.80
Lines of code
19
Difficulty
3.47
Estimated Errors
0.06
Function weight
By Complexity
By SLOC
'use strict'; /** * @ngdoc directive * @name sheermeApp.directive:pages * @description * # pages */ angular.module('SnsApp') .directive('changepicture', function() { return { templateUrl: 'views/changephoto.html', restrict: 'A', replace: true, scope: { position: '@position' }, controller: function($scope, $rootScope) {} }; });