Translations:On Response/9/ru: Difference between revisions

From Wiki Kaminari Click
(Created page with "<pre> function(response) { if (response.fraud == 1) { // bot window.location = 'some.url'; } else { // not a bot showAd(); } } </pre>")
(No difference)

Revision as of 15:28, 30 November 2023

Information about message (contribute)
This message has no documentation. If you know where or how this message is used, you can help other translators by adding documentation to this message.
Message definition (On Response)
<pre>
function(response) {
   if (response.block == 1) {
       // blocked click
       window.location = 'some.url';
   } else if (response.fraud == 1) {
       // bot
       window.location = 'some.url';
   } else {
       // not a bot
       showAd();
   }
}
</pre>
function(response) {
    if (response.fraud == 1) {
        // bot
        window.location = 'some.url';
    } else {
        // not a bot
        showAd();
    }
}