| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/icd/components/com_staffmaster/js/ |
Upload File : |
/**
* File: staffmaster_corners.js
*
* Staff Master 0.7.5.5
*
* Staff Master - Staff Members and Departments Manager
*
* @version 0.7.5.5
* @package StaffMaster_0_7_5_5
* @subpackage: frontend_js
* @copyright (C) 2007-2008 Travis Hubbard
* @license http://www.gnu.org/licenses/ GNU/GPL v3
* @link http://www.systemsunited.net/
*
* Editing Instructions & Params:
*
* radio : The Radius of the rounded corner, default is 20px
* inColor : The background color of the inner area of each staff_wrapper div
* outColor : The background color of the outter area, outside the rounded corners
* borderSize : The size of the border surrounding the staff_wrapper div
* borderColor : The color of the border surrounding the staff_wrapper div
*
* If you need assistance with Hex-based color values, simply google something like "html colors"
* or, check out our website ( http://www.systemsunited.net ) for some easy links to html color values
**/
jQuery(document).ready(function () {
jQuery("div.staff_wrapper").corners({
radio: 20,
inColor: '#FFFFFF',
outColor: '#C5C5C5',
borderSize: 2,
borderColor: '#C5C5C5'
});
});