@@ -13,7 +13,7 @@ import { IAugmentedJQuery, ITimeoutService, IScope, IInterpolateService } from '
1313
1414import {
1515 Obj , extend , forEach , tail , isString , isObject , isArray , parse , noop , unnestR , identity , uniqR , inArray , removeFrom ,
16- RawParams , PathNode , StateOrName , StateService , StateDeclaration , UIRouter
16+ RawParams , PathNode , StateOrName , StateService , StateDeclaration , UIRouter ,
1717} from '@uirouter/core' ;
1818import { UIViewData } from './viewDirective' ;
1919
@@ -62,7 +62,7 @@ function getTypeInfo(el: IAugmentedJQuery): TypeInfo {
6262 return {
6363 attr : isForm ? 'action' : ( isSvg ? 'xlink:href' : 'href' ) ,
6464 isAnchor : el . prop ( 'tagName' ) . toUpperCase ( ) === 'A' ,
65- clickable : ! isForm
65+ clickable : ! isForm ,
6666 } ;
6767}
6868
@@ -93,7 +93,7 @@ function defaultOpts(el: IAugmentedJQuery, $state: StateService) {
9393 return {
9494 relative : stateContext ( el ) || $state . $current ,
9595 inherit : true ,
96- source : 'sref'
96+ source : 'sref' ,
9797 } ;
9898}
9999
@@ -299,7 +299,7 @@ uiSrefDirective = ['$uiRouter', '$timeout',
299299 if ( ! type . clickable ) return ;
300300 hookFn = clickHook ( element , $state , $timeout , type , getDef ) ;
301301 bindEvents ( element , scope , hookFn , rawDef . uiStateOpts ) ;
302- }
302+ } ,
303303 } ;
304304 } ] ;
305305
@@ -434,7 +434,7 @@ uiStateDirective = ['$uiRouter', '$timeout',
434434 if ( ! type . clickable ) return ;
435435 hookFn = clickHook ( element , $state , $timeout , type , getDef ) ;
436436 bindEvents ( element , scope , hookFn , rawDef . uiStateOpts ) ;
437- }
437+ } ,
438438 } ;
439439 } ] ;
440440
@@ -580,7 +580,7 @@ uiSrefActiveDirective = ['$state', '$stateParams', '$interpolate', '$uiRouter',
580580 const stateInfo = {
581581 state : state || { name : stateName } ,
582582 params : stateParams ,
583- activeClass : activeClass
583+ activeClass : activeClass ,
584584 } ;
585585
586586 states . push ( stateInfo ) ;
@@ -612,7 +612,7 @@ uiSrefActiveDirective = ['$state', '$stateParams', '$interpolate', '$uiRouter',
612612 }
613613
614614 update ( ) ;
615- } ]
615+ } ] ,
616616 } ;
617617 } ] ;
618618
0 commit comments