| 12345678910111213141516171819202122232425262728293031 |
- /*
- [DESTOON B2B System] Copyright (c) 2008-2018 www.destoon.com
- This is NOT a freeware, use is subject to license.txt
- */
- function fontZoom(z, i) {
- var i = i ? i : 'content';
- var size = $('#'+i).css('font-size');
- var new_size = Number(size.replace('px', ''));
- new_size += z == '+' ? 1 : -1;
- if(new_size < 12) new_size = 12;
- $('#'+i).css('font-size', new_size+'px');
- $('#'+i+' *').css('font-size', new_size+'px');
- }
- $(function(){
- $(content_id ? '#'+content_id+' img' : 'img').each(function(i){
- var m = img_max_width ? img_max_width : 550;
- var w = $(this).width();
- if(w >= m) {
- $(this).css({'width':m+'px','height':parseInt($(this).height()*m/w)+'px'});
- $(this).attr('title', L['click_open']);
- $(this).click(function(){window.open(DTPath+'api/view.php?img='+$(this).attr('src'));});
- } else if(w == 0) {
- //$(this).css({'display':'none'});
- }
- });
- if(CKDomain) {
- $('#'+(content_id ? content_id : 'content')+' a').each(function(i){
- if($(this).attr('target') != '_blank') {if($(this).attr('href').indexOf(CKDomain) == -1) $(this).attr('target', '_blank');}
- });
- }
- });
|