Skip to content

Commit

Permalink
Solgema/fullcalendar/skins/solgemafullcalendar/solgemafullcalendar.js
Browse files Browse the repository at this point in the history
wider edit popups, since 700 is really narrow for the default edit form here
  • Loading branch information
jensens committed Nov 4, 2012
1 parent 5f90623 commit 1ac848a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
Expand Up @@ -337,7 +337,7 @@ var SolgemaFullcalendar = {
var href = jq(this).attr('href'); var href = jq(this).attr('href');
$dialogContent.append('<iframe src="'+href+'" width="100%" scrolling="no" frameborder="0" name="SFEventEditIFRAME" style="overflow-x:hidden; overflow-y:hidden;"></iframe>'); $dialogContent.append('<iframe src="'+href+'" width="100%" scrolling="no" frameborder="0" name="SFEventEditIFRAME" style="overflow-x:hidden; overflow-y:hidden;"></iframe>');
$dialogContent.dialog({ $dialogContent.dialog({
width: 700, width: 900,
height: 500, height: 500,
autoOpen: true, autoOpen: true,
modal: true, modal: true,
Expand Down Expand Up @@ -415,7 +415,7 @@ var SolgemaFullcalendar = {
$dialogContent.append('<iframe src="'+target_folder+'/createSFEvent?'+jq.param(data)+'" width="100%" scrolling="no" frameborder="0" name="SFEventEditIFRAME" style="overflow-x:hidden; overflow-y:hidden;"></iframe>'); $dialogContent.append('<iframe src="'+target_folder+'/createSFEvent?'+jq.param(data)+'" width="100%" scrolling="no" frameborder="0" name="SFEventEditIFRAME" style="overflow-x:hidden; overflow-y:hidden;"></iframe>');
} }
$dialogContent.dialog({ $dialogContent.dialog({
width: 700, width: 900,
height: 500, height: 500,
autoOpen: true, autoOpen: true,
modal: true, modal: true,
Expand All @@ -436,7 +436,7 @@ var SolgemaFullcalendar = {
var $calendar = jq('#calendar'); var $calendar = jq('#calendar');
$dialogContent.append('<iframe src="'+eventurl+'/SFAjax_base_edit" width="100%" scrolling="no" frameborder="0" name="SFEventEditIFRAME" style="overflow-x:hidden; overflow-y:hidden;"></iframe>'); $dialogContent.append('<iframe src="'+eventurl+'/SFAjax_base_edit" width="100%" scrolling="no" frameborder="0" name="SFEventEditIFRAME" style="overflow-x:hidden; overflow-y:hidden;"></iframe>');
$dialogContent.dialog({ $dialogContent.dialog({
width: 700, width: 900,
height: 500, height: 500,
autoOpen: true, autoOpen: true,
modal: true, modal: true,
Expand Down
11 changes: 11 additions & 0 deletions buildout.cfg
Expand Up @@ -6,6 +6,17 @@ extends = http://dist.plone.org/release/4.3-latest/versions.cfg
unzip = true unzip = true
develop = . develop = .


# https://gist.github.com/3085169 by miohtama
# Makes your buildout complete much faster
allow-hosts =
github.com
*.python.org
*.plone.org
*.zope.org
launchpad.net
sourceforge.net
effbot.or

[instance] [instance]
recipe = plone.recipe.zope2instance recipe = plone.recipe.zope2instance
http-address = 8080 http-address = 8080
Expand Down

0 comments on commit 1ac848a

Please sign in to comment.