File tree Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Expand file tree Collapse file tree 3 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " angular-apm" ,
3
3
"main" : " angular-apm.js" ,
4
- "version" : " 0.1.1 " ,
4
+ "version" : " 0.1.2 " ,
5
5
"homepage" : " https://github.com/randith/angular-apm" ,
6
6
"authors" : [
7
7
" randith <randi.l.thom@gmail.com>"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " angular-apm" ,
3
- "version" : " 0.1.1 " ,
3
+ "version" : " 0.1.2 " ,
4
4
"description" : " angular module for application performance monitoring" ,
5
5
"main" : " angular-apm.js" ,
6
6
"directories" : {
Original file line number Diff line number Diff line change 111
111
perfGoodness . endView = function ( ) {
112
112
if ( ! options . enabled ) {
113
113
return ;
114
- } else if ( ! options . reportOnEndView ) {
115
- console . warn ( "Called endView with reportOnEndView set to false" ) ;
116
- return ;
117
- } else if ( ! viewName ) {
118
- console . warn ( "Called endView when view not started" ) ;
119
- return ;
120
114
}
121
- reportResults ( viewName , $http , this ) ;
115
+ if ( ! viewName ) {
116
+ reportResults ( 'markers' , $http , this ) ;
117
+ } else {
118
+ reportResults ( viewName , $http , this ) ;
119
+ }
122
120
} ;
123
121
124
122
/**
You can’t perform that action at this time.
0 commit comments