Re-added console.log polyfill, fixed dom.attr return value for getting

This commit is contained in:
Timothy Warren 2011-07-05 16:00:55 -04:00
parent c8d8d16a7e
commit 1316ac4b32
1 changed files with 10 additions and 5 deletions

15
kis.js
View File

@ -17,6 +17,14 @@
{
return;
}
//Define console.log dummy function if it doesn't exist
if(typeof window.console === "undefined")
{
window.console = {
log: function(){}
};
}
var $_, $;
@ -495,7 +503,7 @@
: sel[name] = null;
}
return (typeof value !== "undefined") ? value : oldValue;
return (typeof value !== "undefined") ? value : oldVal;
}
// Private function for class manipulation
@ -583,10 +591,7 @@
d = {
each: function (sel, callback)
{
if (typeof sel === "string")
{
sel = $(sel);
}
sel = $(sel);
if(!sel.length)
{