1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/**
* Horde Image Javascript
*
* Provides the javascript to help during the uploading of images in Horde_Form.
*
* $Horde: horde/js/image.js,v 1.3.4.3 2006/01/01 21:29:02 jan Exp $
*
* Copyright 2003-2006 Marko Djukic <marko@oblo.com>
*
* See the enclosed file COPYING for license information (LGPL). If you did not
* receive this file, see http://www.fsf.org/copyleft/lgpl.html.
*/
/**
* Changes the src of an image target, optionally attaching a time value to the
* URL to make sure that the image does update and not use the browser cache.
*
* @param string src The srouce to inserted into the image element.
* @param string target The target element.
* @param optional bool no_cache If set to true will append the time.
*
* @return bool False to stop the browser loading anything.
*/
function showImage(src, target, no_cache)
{
var img = document.getElementById(target);
if (typeof no_cache == 'undefined') {
var no_cache = false;
}
if (no_cache) {
var now = new Date();
src = src + '&' + now.getTime();
}
img.src = src;
return false;
}
/**
* Adds to the given source the height/width field values for the given target.
*
* @param string src The srouce to append to the resize params.
* @param string target The target element.
* @param optional bool ratio If set to true will append fix the ratio.
*
* @return string The modified source to include the resize data.
*/
function getResizeSrc(src, target, ratio)
{
var width = document.getElementById('_w_' + target).value;
var height = document.getElementById('_h_' + target).value;
if (typeof ratio == 'undefined') {
var ratio = 0;
}
src = src + '&' + 'v=' + width + '.' + height + '.' + ratio;
return src;
}
|