You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You should use the 'use strict' string on top of the init function as a matter of better js coding practice. This will make the test on line 55 (...prop('contenxteditable') == 'true') complain with jshint because of the == that should be ===
Also, the variable key declared at line 61 is never used in the code. It can be removed.
The text was updated successfully, but these errors were encountered:
You should use the 'use strict' string on top of the init function as a matter of better js coding practice. This will make the test on line 55 (...prop('contenxteditable') == 'true') complain with jshint because of the == that should be ===
Also, the variable key declared at line 61 is never used in the code. It can be removed.
The text was updated successfully, but these errors were encountered: