From 6553abc2fa43c5d9032ed2875e54447c25ea13d5 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 6 May 2009 11:57:33 +0200 Subject: [PATCH] Header corrections --- pixastic.core.js | 4 ++-- pixastic.jquery.js | 7 ++++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/pixastic.core.js b/pixastic.core.js index 37a813b..e88681c 100755 --- a/pixastic.core.js +++ b/pixastic.core.js @@ -1,7 +1,7 @@ /* * Pixastic Lib - Core Functions - v0.1.3 - * Copyright (c) 2008 Jacob Seidelin, cupboy@gmail.com, http://blog.nihilogic.dk/ - * MIT License [http://www.opensource.org/licenses/mit-license.php] + * Copyright (c) 2008 Jacob Seidelin, jseidelin@nihilogic.dk, http://blog.nihilogic.dk/ + * License: [http://www.pixastic.com/lib/license.txt] */ var Pixastic = (function() { diff --git a/pixastic.jquery.js b/pixastic.jquery.js index cf8f507..1a807a9 100755 --- a/pixastic.jquery.js +++ b/pixastic.jquery.js @@ -1,10 +1,15 @@ +/* + * Pixastic Lib - jQuery plugin + * Copyright (c) 2008 Jacob Seidelin, jseidelin@nihilogic.dk, http://blog.nihilogic.dk/ + * License: [http://www.pixastic.com/lib/license.txt] + */ if (typeof jQuery != "undefined" && jQuery && jQuery.fn) { jQuery.fn.pixastic = function(action, options) { var newElements = []; this.each( function () { - if (this.tagName == "IMG" && !this.complete) { + if (this.tagName.toLowerCase() == "img" && !this.complete) { return; } var res = Pixastic.process(this, action, options);