Skip to content

Instantly share code, notes, and snippets.

@geek01
Last active August 29, 2015 13:56
Show Gist options
  • Save geek01/9128407 to your computer and use it in GitHub Desktop.
Save geek01/9128407 to your computer and use it in GitHub Desktop.
解決NicEdit在ie6.7.8寬度不正常問題
//參考資料http://wordpress.org/support/topic/plugin-front-end-editor-text-area-become-very-narrow
尋找
(parseInt(e.getStyle('width')) || e.clientWidth)
取代為
(e.clientWidth || parseInt(e.getStyle('width')))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment