(img_element)
| 85 | }); |
| 86 | |
| 87 | function getOriginalWidthOfImg(img_element) { |
| 88 | var t = new Image(); |
| 89 | t.src = (img_element.getAttribute ? img_element.getAttribute("src") : false) || img_element.src; |
| 90 | return t.width; |
| 91 | } |
| 92 | |
| 93 | /* $('div.dyncontent').find('img').each(function(){ |
| 94 | if(getOriginalWidthOfImg($(this)[0]) > $('#content>div.container').width()) |
nothing calls this directly
no outgoing calls
no test coverage detected