inherit
169267
0
Mar 27, 2023 17:45:31 GMT -8
Mike
Praise God Almighty!
1,479
July 2011
riccetts
Chicken Curry
Pie
|
Post by Mike 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
Sept 28, 2022 13:12:14 GMT -8
Chris
8,655
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
|
|