()
| 110 | if (this._pulse_status >= 0) |
| 111 | return; |
| 112 | function pulse() { |
| 113 | var i; |
| 114 | Search._pulse_status = (Search._pulse_status + 1) % 4; |
| 115 | var dotString = ''; |
| 116 | for (i = 0; i < Search._pulse_status; i++) |
| 117 | dotString += '.'; |
| 118 | Search.dots.text(dotString); |
| 119 | if (Search._pulse_status > -1) |
| 120 | window.setTimeout(pulse, 500); |
| 121 | } |
| 122 | pulse(); |
| 123 | }, |
| 124 |
no outgoing calls
no test coverage detected
searching dependent graphs…