~dangarner/xibo/server-133

« back to all changes in this revision

Viewing changes to server/modules/preview/jquery.fittext.js

  • Committer: Dan Garner
  • Date: 2012-06-04 16:40:26 UTC
  • Revision ID: dan@xibo.org.uk-20120604164026-0hw1b9g74iwpis7z
[server] RSS Preview using new JS library

Show diffs side-by-side

added added

removed removed

Lines of Context:
27
27
            }
28
28
 
29
29
            // Resizer() resizes items based on the object width divided by the compressor * 10
 
30
            // Dan Garner: Modified to resize the children
30
31
            var resizer = function () {
31
32
                $this.children().css('font-size', Math.max(Math.min($this.width() / (compressor*10), parseFloat(settings.maxFontSize)), parseFloat(settings.minFontSize)));
32
33
            };