rkazakov / ampify

Convert your HTML to Google AMP (Accelerated Mobile Pages)
MIT License
109 stars 32 forks source link

Fix css query #14

Closed gruberjl closed 6 years ago

gruberjl commented 6 years ago

Error in line 89 in index.js. attributes need brackets around them:

Currently $('img:not(width):not(height)').each((index, element) => {

should be $('img:not([width]):not([height])').each((index, element) => {

I'll send a pull request to fix.