Last active
August 29, 2015 13:56
-
-
Save geek01/9128407 to your computer and use it in GitHub Desktop.
解決NicEdit在ie6.7.8寬度不正常問題
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//參考資料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