You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
565 B
10 lines
565 B
var quill_popup=function(){
|
|
window.open(document.getElementById('quill-script').src.replace('favorite.js?','favorite-popup?'),'quill-like', 'status=no,directories=no,location=no,resizable=no,menubar=no,width=300,height=200,toolbar=no');
|
|
};
|
|
(function(){
|
|
var quill=document.createElement('script');
|
|
quill.src='<?= Config::$base_url ?>favorite.js?url='+encodeURIComponent(window.location)+'&token=<?= $this->token ?>';
|
|
quill.setAttribute('id','quill-script');
|
|
quill.setAttribute('onerror', 'quill_popup()');
|
|
document.body.appendChild(quill);
|
|
})();
|