diff options
| author | pepperpepperpepper <pepper@scannerjammer.com> | 2015-11-18 11:57:32 -0800 |
|---|---|---|
| committer | pepperpepperpepper <pepper@scannerjammer.com> | 2015-11-18 11:57:32 -0800 |
| commit | 893c31e004891701c88ddeb585a925cec32a8f0e (patch) | |
| tree | a7b69bbf032b732842cdca26c47c2017a14af887 /share/frontend/imbreak | |
| parent | 87f6c2a5b777bd8b676d03a86606adba3c5af416 (diff) | |
the great cleanup, the legend continues
Diffstat (limited to 'share/frontend/imbreak')
| -rwxr-xr-x | share/frontend/imbreak/img/ivy.gif (renamed from share/frontend/imbreak/ivy.gif) | bin | 196165 -> 196165 bytes | |||
| -rwxr-xr-x | share/frontend/imbreak/img/logo-variant.gif (renamed from share/frontend/imbreak/on9TF_1322970909_1322970984_1323325278.gif) | bin | 53535 -> 53535 bytes | |||
| -rwxr-xr-x | share/frontend/imbreak/img/logo.gif (renamed from share/frontend/imbreak/firstlogo.gif) | bin | 71127 -> 71127 bytes | |||
| -rwxr-xr-x | share/frontend/imbreak/img/main.gif (renamed from share/frontend/imbreak/newmain.gif) | bin | 248285 -> 248285 bytes | |||
| -rwxr-xr-x | share/frontend/imbreak/index.html | 10 | ||||
| -rwxr-xr-x | share/frontend/imbreak/jcookie.js | 95 | ||||
| -rwxr-xr-x | share/frontend/imbreak/js/jquery-ui.min.js (renamed from share/frontend/imbreak/jquery-ui.min.js) | 0 |
7 files changed, 5 insertions, 100 deletions
diff --git a/share/frontend/imbreak/ivy.gif b/share/frontend/imbreak/img/ivy.gif Binary files differindex b51faca..b51faca 100755 --- a/share/frontend/imbreak/ivy.gif +++ b/share/frontend/imbreak/img/ivy.gif diff --git a/share/frontend/imbreak/on9TF_1322970909_1322970984_1323325278.gif b/share/frontend/imbreak/img/logo-variant.gif Binary files differindex 8e19e59..8e19e59 100755 --- a/share/frontend/imbreak/on9TF_1322970909_1322970984_1323325278.gif +++ b/share/frontend/imbreak/img/logo-variant.gif diff --git a/share/frontend/imbreak/firstlogo.gif b/share/frontend/imbreak/img/logo.gif Binary files differindex 5762688..5762688 100755 --- a/share/frontend/imbreak/firstlogo.gif +++ b/share/frontend/imbreak/img/logo.gif diff --git a/share/frontend/imbreak/newmain.gif b/share/frontend/imbreak/img/main.gif Binary files differindex 8eb7e73..8eb7e73 100755 --- a/share/frontend/imbreak/newmain.gif +++ b/share/frontend/imbreak/img/main.gif diff --git a/share/frontend/imbreak/index.html b/share/frontend/imbreak/index.html index 88d0c6b..7bab966 100755 --- a/share/frontend/imbreak/index.html +++ b/share/frontend/imbreak/index.html @@ -172,10 +172,10 @@ body <span style="background-color:rgba(245,245,245,0.7)">An image breaking utility from PHOTOBLASTER, this program breaks images <br>and then restores them to an unbroken state so that they can be used for further editing.<br></span> <p> - <li id="ivy" style="background-image:url(ivy.gif);"> - <img id="firstlogo" src="firstlogo.gif"></img> - <img id="mainlogo" src="newmain.gif"></img> - <img id="secondlogo" src="on9TF_1322970909_1322970984_1323325278.gif"></img> + <li id="ivy" style="background-image:url(img/ivy.gif);"> + <img id="firstlogo" src="img/logo.gif"></img> + <img id="mainlogo" src="img/main.gif"></img> + <img id="secondlogo" src="img/logo-variant.gif"></img> </li> <li style="display:inline; background-image:url(http://i.asdf.us/im/63/imgrid_1328137237_ivy_pepper.gif)"></li> </p> @@ -243,7 +243,7 @@ BREAK ANGLE: <input id='breakangle' type='text' value='0'></input> <div id="output-info" class='results'></div> </div> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> -<script type="text/javascript" src="jquery-ui.min.js"></script> +<script type="text/javascript" src="js/jquery-ui.min.js"></script> <script type="text/javascript"> function clearcopyright(){ $('#copyright').html(""); diff --git a/share/frontend/imbreak/jcookie.js b/share/frontend/imbreak/jcookie.js deleted file mode 100755 index ee84737..0000000 --- a/share/frontend/imbreak/jcookie.js +++ /dev/null @@ -1,95 +0,0 @@ -cookie plugin - * - * Copyright (c) 2006 Klaus Hartl (stilbuero.de) - * Dual licensed under the MIT and GPL licenses: - * http://www.opensource.org/licenses/mit-license.php - * http://www.gnu.org/licenses/gpl.html - * - */ - -/** - * Create a cookie with the given name and value and other optional parameters. - * - * @example $.cookie('the_cookie', 'the_value'); - * @desc Set the value of a cookie. - * @example $.cookie('the_cookie', 'the_value', { expires: 7, path: '/', domain: 'jquery.com', secure: true }); - * @desc Create a cookie with all available options. - * @example $.cookie('the_cookie', 'the_value'); - * @desc Create a session cookie. - * @example $.cookie('the_cookie', null); - * @desc Delete a cookie by passing null as value. Keep in mind that you have to use the same path and domain - * used when the cookie was set. - * - * @param String name The name of the cookie. - * @param String value The value of the cookie. - * @param Object options An object literal containing key/value pairs to provide optional cookie attributes. - * @option Number|Date expires Either an integer specifying the expiration date from now on in days or a Date object. - * If a negative value is specified (e.g. a date in the past), the cookie will be deleted. - * If set to null or omitted, the cookie will be a session cookie and will not be retained - * when the the browser exits. - * @option String path The value of the path atribute of the cookie (default: path of page that created the cookie). - * @option String domain The value of the domain attribute of the cookie (default: domain of page that created the cookie). - * @option Boolean secure If true, the secure attribute of the cookie will be set and the cookie transmission will - * require a secure protocol (like HTTPS). - * @type undefined - * - * @name $.cookie - * @cat Plugins/Cookie - * @author Klaus Hartl/klaus.hartl@stilbuero.de - */ - -/** - * Get the value of a cookie with the given name. - * - * @example $.cookie('the_cookie'); - * @desc Get the value of a cookie. - * - * @param String name The name of the cookie. - * @return The value of the cookie. - * @type String - * - * @name $.cookie - * @cat Plugins/Cookie - * @author Klaus Hartl/klaus.hartl@stilbuero.de - */ -jQuery.cookie = function(name, value, options) { - if (typeof value != 'undefined') { // name and value given, set cookie - options = options || {}; - if (value === null) { - value = ''; - options.expires = -1; - } - var expires = ''; - if (options.expires && (typeof options.expires == 'number' || options.expires.toUTCString)) { - var date; - if (typeof options.expires == 'number') { - date = new Date(); - date.setTime(date.getTime() + (options.expires * 24 * 60 * 60 * 1000)); - } else { - date = options.expires; - } - expires = '; expires=' + date.toUTCString(); // use expires attribute, max-age is not supported by IE - } - // CAUTION: Needed to parenthesize options.path and options.domain - // in the following expressions, otherwise they evaluate to undefined - // in the packed version for some reason... - var path = options.path ? '; path=' + (options.path) : ''; - var domain = options.domain ? '; domain=' + (options.domain) : ''; - var secure = options.secure ? '; secure' : ''; - document.cookie = [name, '=', encodeURIComponent(value), expires, path, domain, secure].join(''); - } else { // only name given, get cookie - var cookieValue = null; - if (document.cookie && document.cookie != '') { - var cookies = document.cookie.split(';'); - for (var i = 0; i < cookies.length; i++) { - var cookie = jQuery.trim(cookies[i]); - // Does this cookie string begin with the name we want? - if (cookie.substring(0, name.length + 1) == (name + '=')) { - cookieValue = decodeURIComponent(cookie.substring(name.length + 1)); - break; - } - } - } - return cookieValue; - } -}; diff --git a/share/frontend/imbreak/jquery-ui.min.js b/share/frontend/imbreak/js/jquery-ui.min.js index 0202506..0202506 100755 --- a/share/frontend/imbreak/jquery-ui.min.js +++ b/share/frontend/imbreak/js/jquery-ui.min.js |
