321
| <![CDATA[<script type="text/javascript" language="javascript">
// JUSTFIELD GALLEY
$(document).ready(function(){
$('#liveDemo').justifiedGallery({
rowHeight: 200,
maxRowHeight: 0,
margins: 1,
border: 0,
rel : 'liveDemo',
lastRow: 'nojustify',
fixedHeight: false,
captions: true,
randomize: false,
sizeRangeSuffixes: {
lt100 : '_t',
lt240 : '_m',
lt320 : '_n',
lt500 : '',
lt640 : '_z',
lt1024 : '_b'
}
});
});
</script>]]>
|
790
| <![CDATA[<script type="text/javascript">
$(document).ready(function(){
$('img.img-svg').each(function(){
var $img = $(this);
var imgID = $img.attr('id');
var imgClass = $img.attr('class');
var imgURL = $img.attr('src');
$.get(imgURL, function(data) {
var $svg = $(data).find('svg');
if(typeof imgID !== 'undefined') {
$svg = $svg.attr('id', imgID);
}
if(typeof imgClass !== 'undefined') {
$svg = $svg.attr('class', imgClass+' replaced-svg');
}
$svg = $svg.removeAttr('xmlns:a');
if(!$svg.attr('viewBox') && $svg.attr('height') && $svg.attr('width')) {
$svg.attr('viewBox', '0 0 ' + $svg.attr('height') + ' ' + $svg.attr('width'))
}
$img.replaceWith($svg);
}, 'xml');
});
})
</script>]]>
|