diff options
author | friendica <info@friendica.com> | 2013-12-23 19:51:51 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-12-23 19:51:51 -0800 |
commit | 4e3a2c5f28690158d9cf3c282f9d14736b5b0550 (patch) | |
tree | 8974059b85aac2cfeff30c14c05ddb80de61649a /view | |
parent | 8194ade8868bb57180d49a86216fc6fd680b4e79 (diff) | |
download | volse-hubzilla-4e3a2c5f28690158d9cf3c282f9d14736b5b0550.tar.gz volse-hubzilla-4e3a2c5f28690158d9cf3c282f9d14736b5b0550.tar.bz2 volse-hubzilla-4e3a2c5f28690158d9cf3c282f9d14736b5b0550.zip |
make sure resize fires
Diffstat (limited to 'view')
-rw-r--r-- | view/js/mod_directory.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/view/js/mod_directory.js b/view/js/mod_directory.js index 96a38a109..29caa8d55 100644 --- a/view/js/mod_directory.js +++ b/view/js/mod_directory.js @@ -1,7 +1,8 @@ function dirdetails(hash) { $.get('dirprofile' + '?f=&hash=' + hash, function( data ) { - $.colorbox({ html: data }); + $.colorbox({ maxWidth: '75%', maxHeight: '75%', html: data }); + $.colorbox.resize(); }); } |