Changeset 993343
- Timestamp:
- 09/19/2014 03:30:57 PM (11 years ago)
- Location:
- rackforms-express/trunk
- Files:
-
- 2 edited
-
rackforms-express.php (modified) (3 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
rackforms-express/trunk/rackforms-express.php
r906602 r993343 960 960 * 961 961 * This code will resize an iframe (or any other element) based on window size. 962 * Please note that by default RackForms sets absolute (pixle) sizes on elements963 * which means this code will not work without first changing all child elements964 * 'width' property to a percentage.965 962 * 966 963 * USAGE … … 1417 1414 }; 1418 1415 1416 /** 1417 * Function Not Used As Of Version 1.2. 1418 */ 1419 1419 function isResponsive(){ 1420 1420 … … 1472 1472 1473 1473 // always resize iframe on page load 1474 resize_id(obj_name); 1474 1475 // Build 1.3 Fix. 1476 1477 var iframe = document.getElementById('fb-iframe'); 1478 1479 if (iframe.attachEvent){ 1480 iframe.attachEvent("onload", function(){ 1481 resize_id(obj_name); 1482 }); 1483 } else { 1484 iframe.onload = function(){ 1485 resize_id(obj_name); 1486 }; 1487 } 1488 1489 1475 1490 1476 1491 } -
rackforms-express/trunk/readme.txt
r981918 r993343 40 40 5. Click the `RackForms` Menu item and press the Install RackForms button. 41 41 42 That's it! Enjoy!42 That's it! Enjoy! 43 43 44 44 == Frequently Asked Questions == … … 54 54 55 55 == Changelog == 56 57 = 1.3 = 58 -Bug fix for responsive form code iframe loading. 56 59 57 60 = 1.2 =
Note: See TracChangeset
for help on using the changeset viewer.