ReadMe.txt 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. This software is licensed under the MIT agreement. Please see license.txt for any additional requests.
  2. Update 2.4.0
  3. - Issue reported in IE (specifically 11) that the iframe mode is printing the whole page.
  4. * After some investigation the demo seemed to break when the external css was not completely loaded from the external site in the iframe.
  5. - Notes:
  6. * Minor version increased.
  7. * Added jquery ui dialog to demo (jquery-ui-1.10.4)
  8. * Demo is using jquery-1.10.2
  9. Update 2.3.3
  10. - Issue reported that when using Chrome, css not being applied correctly. Added delay to allow css to be applied correctly to print document.
  11. Thanks jer-gallagher-oe for supplying the fix!
  12. Update 2.3.2
  13. - Fixed bug in IE8 browsers and jquery 1.7 (as reported in issues). Switch from for-in to for-each.
  14. Update 2.3.1
  15. - Important Changes:
  16. * In this version, the document standard is no longer set by the option 'strict'.
  17. To accomodate different standards, you can specify one of [strict, loose, html5] as the new 'standard' option.
  18. * HTML5 is the default standard for the doc type.
  19. - Notes:
  20. * For <link> elements, you MUST include the 'rel' attribute with a value of 'stylesheet'. Otherwise the stylesheet will not be included in the printed element.
  21. * New option : 'extraHead' this is a comma delimited string of additional elements that is added to the head of the printed document.
  22. An example of this might be: '<meta charset="utf-8" />,<meta http-equiv="X-UA-Compatible" content="IE=edge"/>'