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);