﻿/*
Fidyo genel işlemler
*/

if (!window.console) console = {};
window.logEnabled = true;
console.log = (logEnabled && console.log) || function () { };
console.warn = (logEnabled && console.warn) || function () { };
console.error = (logEnabled && console.error) || function () { };
console.info = (logEnabled && console.info) || function () { };
console.debug = (logEnabled && console.debug) || function () { };


function bozuk_resim_bildir(resim,resim_id) {
    resim.src = "/images/bg/noImage.png";
   // resim.onerror = "";
    
    $.ajax({
        type: "POST",
        url: "/servisler/genel.asmx/bozuk_resim_bildir",
        data: "{id:'"+ resim_id +"'}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (msg) {
            console.log(msg);
        },
        error: function (msg) {
            console.log('hata :' + msg);
        }
    });

    return true;
}

function video_bildir(video_id) {
    $.ajax({
        type: "POST",
        url: "/servisler/genel.asmx/video_bildir",
        data: "{id:'" + video_id + "'}",
        contentType: "application/json; charset=utf-8",
        dataType: "json",
        success: function (msg) {
            console.log(msg);
        },
        error: function (msg) {
            console.log('hata :' + msg);
        }
    });

    return true;
}
