Total Complexity | 3 |
Complexity/F | 1 |
Lines of Code | 13 |
Function Count | 3 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | /* global pronamicPayAdminTour */ |
||
2 | jQuery( document ).ready( function( $ ) { |
||
3 | $.each( pronamicPayAdminTour.pointers, function() { |
||
4 | var pointer = this; |
||
5 | |||
6 | var options = $.extend( pointer.options, { |
||
7 | buttons: function() { |
||
8 | return false; |
||
9 | } |
||
10 | } ); |
||
11 | |||
12 | $( pointer.selector ).first().pointer( options ).pointer( 'open' ); |
||
13 | } ); |
||
14 | } ); |
||
15 |