Skip to content

Commit

Permalink
update selector, feature detect for canvas
Browse files Browse the repository at this point in the history
  • Loading branch information
imsky committed Jun 19, 2012
1 parent cc7ae48 commit 8184caa
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -116,7 +116,7 @@ Browser support
License
-------

Holder is provided under the BSD license. Commercial use requires attribution.
Holder is provided under the [Apache 2.0 License](http://www.apache.org/licenses/LICENSE-2.0). Commercial use requires attribution.

Credits
-------
Expand Down
30 changes: 19 additions & 11 deletions holder.js
@@ -1,23 +1,33 @@
/*
Holder - client side image placeholders
(c) 2012 Ivan Malopinsky / http://imsky.co
Provided under the BSD License. Commercial use requires attribution.
Provided under the Apache 2.0 License: http://www.apache.org/licenses/LICENSE-2.0
Commercial use requires attribution.
*/

var Holder = Holder || {};
(function (app, win) {

//https://gist.github.com/991057 by Jed Schmidt
function selector(a,b){a=a.match(/^(\W)?(.*)/);return(b||document)["getElement"+(a[1]?a[1]=="#"?"ById":"sByClassName":"sByTagName")](a[2])};

//http://javascript.nwbox.com/ContentLoaded by Diego Perini with modifications
function contentLoaded(n,t){var l="complete",s="readystatechange",u=!1,h=u,c=!0,i=n.document,a=i.documentElement,e=i.addEventListener?"addEventListener":"attachEvent",v=i.addEventListener?"removeEventListener":"detachEvent",f=i.addEventListener?"":"on",r=function(e){(e.type!=s||i.readyState==l)&&((e.type=="load"?n:i)[v](f+e.type,r,u),!h&&(h=!0)&&t.call(n,null))},o=function(){try{a.doScroll("left")}catch(n){setTimeout(o,50);return}r("poll")};if(i.readyState==l)t.call(n,"lazy");else{if(i.createEventObject&&a.doScroll){try{c=!n.frameElement}catch(y){}c&&o()}i[e](f+"DOMContentLoaded",r,u),i[e](f+s,r,u),n[e](f+"load",r,u)}};

//https://gist.github.com/991057 by Jed Schmidt with modifications
function selector(a){a=a.match(/^(\W)?(.*)/);var b=document["getElement"+(a[1]?a[1]=="#"?"ById":"sByClassName":"sByTagName")](a[2]);return b.length?b:[b]}

//object property extend
function extend(a,b){var c={};for(var d in a)c[d]=a[d];for(var e in b)c[e]=b[e];return c}

function draw(canvas, dimensions, template) {

if(!canvas.getContext){
return false;
}

var ctx = canvas.getContext("2d");

var dimension_arr = [dimensions.height, dimensions.width].sort();

var maxFactor = Math.round(dimension_arr[1] / 16),
Expand All @@ -27,9 +37,7 @@ var Holder = Holder || {};

canvas.setAttribute("width", dimensions.width);
canvas.setAttribute("height", dimensions.height);

var ctx = canvas.getContext("2d");


ctx.textAlign = "center";
ctx.textBaseline = "middle";
ctx.fillStyle = template.background;
Expand Down Expand Up @@ -90,9 +98,9 @@ var Holder = Holder || {};
}
app.run = function (o) {
var options = extend(settings, o),
images = selector(options.images);
images = images.length != null ? images : [images];
preempted = true;
images = selector(options.images),
preempted = true;
for(var l = images.length, i = 0; i < l; i++) {
var dimensions, theme = settings.themes.gray;
src = images[i].getAttribute("data-src") || images[i].getAttribute("src");
Expand All @@ -119,7 +127,7 @@ var Holder = Holder || {};
}
if(render){
images[i].setAttribute("data-src", src);
images[i].setAttribute("src", draw(canvas, dimensions, theme));
images[i].setAttribute("src", draw(canvas, dimensions, theme) || src);
}
}
}
Expand Down

0 comments on commit 8184caa

Please sign in to comment.