inherit
169267
0
Feb 28, 2021 17:54:01 GMT -8
Watcher
Praise God Almighty!
1,274
July 2011
riccetts
Beef
|
Post by Watcher on Oct 18, 2020 5:07:12 GMT -8
I have a plugin that shorty walked me through in 2018. what I want to know Is this going to work on the next version of proboards?
$(document).ready(function(){ var url=pb.plugin.get('caddy_2').settings.url; var title=pb.plugin.get('caddy_2').settings.title; var color=pb.plugin.get('caddy_2').settings.color; var size=pb.plugin.get('caddy_2').settings.size; var comm=pb.plugin.get('caddy_2').settings.comm; var border=pb.plugin.get('caddy_2').settings.border; var cad_2='<center><div id="google">'; cad_2+='<h2 style="color:#'+color+';font-size:'+size+'px">'+title+'</h2>'; cad_2+='<iframe class="one" width="870" height="500" style="border:15px '+border+' #'+color+'" src="'+url+'" frameborder="2" allowfullscreen></iframe><br>'; cad_2+='<h2 style="color:#'+color+';font-size:'+size+'px">'+comm+'</h2>'; cad_2+='</div></center>'; cad_2+='<br>'; $('div#google').html(cad_2); });
|
|
inherit
Official Code Helper
65613
0
1
Jan 24, 2021 23:33:00 GMT -8
Chris
I would rather have questions that can't be answered than answers that can't be questioned
8,140
December 2005
horace
|
Post by Chris on Oct 19, 2020 10:09:48 GMT -8
The programming platform for V6 has not been finalized and released yet so that would be a emphatic maybe :-/
The script looks like a simple HTML injection so really should not cause a problem unless there is some conflicting id or class leading to unexpected behaviour
|
|