myems-admin/js/angular/angular-aria.js
Function compile
has 75 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
compile: function(elem, attr) {
if (attr.hasOwnProperty(ARIA_DISABLE_ATTR)) return;
var shape = getShape(attr, elem);
Function post
has 69 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
post: function(scope, elem, attr, ngModel) {
var needsTabIndex = shouldAttachAttr('tabindex', 'tabindex', elem, false);
function ngAriaWatchModelValue() {
return ngModel.$modelValue;
Function $AriaProvider
has 35 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
function $AriaProvider() {
var config = {
ariaHidden: true,
ariaChecked: true,
ariaReadonly: true,
Function compile
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
compile: function(elem, attr) {
if (attr.hasOwnProperty(ARIA_DISABLE_ATTR)) return;
var fn = $parse(attr.ngClick);
return function(scope, elem, attr) {