Disable responsive images

Permalink
Hi everyone,

I wish to disable Picturefill in Concrete 5-8.5.2

In my content block source I have...

<p>
   <img alt="TestHome_Sml.png" src="http://michelcarrier.test/download_file/view_inline/126" />
</p>


The oputput looks like this...

<p>
   <picture>
   <!--[if IE 9]><video style='display: none;'><![endif]-->
   <source srcset="http://michelcarrier.test/application/files/1515/7866/6810/TestHome_Sml.png" media="(min-width: 768px)">
   <source srcset="http://michelcarrier.test/application/files/1515/7866/6810/TestHome_Sml.png">
   <!--[if IE 9]></video><![endif]-->
   <img src="http://michelcarrier.test/application/files/1515/7866/6810/TestHome_Sml.png" alt="TestHome_Sml.png">
   </picture>
</p>


I wish to disable this behaviour so the output will be the same as I see in my content block source.

Thank you ! ;-)

tnours