Header corrections

This commit is contained in:
root 2009-05-06 11:57:33 +02:00
parent 6fab226831
commit 6553abc2fa
2 changed files with 8 additions and 3 deletions

View file

@ -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() {

View file

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