paramquery / select

jQuery select plugin
GNU General Public License v3.0
25 stars 21 forks source link

Source code has mixed newline styles which makes it hard to create clean diff #18

Open DurkStrooisma opened 4 years ago

DurkStrooisma commented 4 years ago

I'm trying to prepare a pull request, but because of mixed newline styles in the original source code I cannot make a clean diff (i.e. each line is seen as difference). Can you please fix this?

To make it a file with proper Unix newlines you can do something like: cat pqselect.dev.js | tr '\r' '\n' > pqselect.dev.js.proper

Thanks!