Jump to content


These Forums Are Now Read-Only


For TubePress support, please post a question here or open a support ticket and we will be glad to assist.


Photo

adding a 'close' trigger to jqmodal


  • Please log in to reply
1 reply to this topic

#1 Stephen Everse

Stephen Everse

    Member

  • Members
  • PipPip
  • 12 posts

Posted 19 September 2011 - 11:19 PM

My client wants the jqmodal window to have a "close" button. I see that this is possible http://dev.iceburg.net/jquery/jqModal/) , but am not sure where/how to include it in the jqmodal.js file....

$('#dialog').jqmAddClose('.hideDialog');
$('.dialogs').jqmAddClose($('#hideDialogs a'));

gets added how to this?:

var TubePressJqModalPlayer=(function(){var c=TubePressEvents,b="jqmodal",f=jQuery(document),e=getTubePressBaseUrl()+"/sys/ui/static/players/jqmodal/lib/jqModal.",a=function(m,l,j,i,g){var h=jQuery('
').appendTo("body"),k=function(n){n.o.remove();n.w.remove()};h.addClass("jqmWindow");h.jqm({onHide:k}).jqmShow()},d=function(l,m,h,g,i,k,j){jQuery("#jqmodal"+j+k).html(h)};jQuery.getScript(e+"js",function(){},true);TubePressCss.load(e+"css");f.bind(c.PLAYER_INVOKE+b,a);f.bind(c.PLAYER_POPULATE+b,d)}());

thanks,
Stephen

#2 eric

eric

    Lead Developer

  • TubePress Staff
  • 2787 posts

Posted 23 September 2011 - 09:20 PM

Hi Stephen,

I'm not overly familiar with adding a "close" button to jqModal, but you're free to modify TubePress's copy of jqmodal.js which in turn should let you control jqModal. The JS file at sys/ui/static/players/jqmodal/jqmodal.js is a compressed version of the file at sys/ui/static/players/jqmodal/jqmodal-dev.js. So you should be able to edit jqmodal-dev.js to your liking, then just swap the contents with jqmodal.js.

Does that make sense?