Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion jquery.fittext.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,13 @@

// Store the object
var $this = $(this);

// Set particular compressor for the object according to its data value
var compressator = $this.data('fittext-kompressor') || compressor;

// Resizer() resizes items based on the object width divided by the compressor * 10
var resizer = function () {
$this.css('font-size', Math.max(Math.min($this.width() / (compressor*10), parseFloat(settings.maxFontSize)), parseFloat(settings.minFontSize)));
$this.css('font-size', Math.max(Math.min($this.width() / (compressator*10), parseFloat(settings.maxFontSize)), parseFloat(settings.minFontSize)));
};

// Call once to set.
Expand Down