This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<data> | |
<datasource> | |
<section handle="test-section">Test Section</section> | |
<entry> | |
<page-path handle="about">/about</page-path> | |
<page-title handle="about">About</page-title> | |
<title handle="about-this-company">About This Company</title> | |
<template> | |
<item id="2" handle="content" section-handle="page-templates" section-name="Page Templates">Content</item> | |
</template> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://gist.github.com/1096291 | |
;(function ($) { | |
$.fn.truncateLines = function(options) { | |
options = $.extend($.fn.truncateLines.defaults, options); | |
return this.each(function(index, container) { | |
container = $(container); | |
var containerLineHeight = Math.ceil(parseFloat(container.css('line-height'))); |
NewerOlder