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 edit summary
 
Line 1: Line 1:
<pre>
<pre>
function(response) {
function(response) {
     if (response.fraud == 1) {
     if (response.block == 1) {
        // blocked click
        window.location = 'some.url';
    } else if (response.fraud == 1) {
         // bot
         // bot
         window.location = 'some.url';
         window.location = 'some.url';

Latest revision as of 15:46, 3 January 2024

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.block == 1) {
        // blocked click
        window.location = 'some.url';
    } else if (response.fraud == 1) {
        // bot
        window.location = 'some.url';
    } else {
        // not a bot
        showAd();
    }
}