diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2016-03-31 00:31:10 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2016-04-13 11:32:07 -0400 |
commit | 5f41f9c6a8b143392452c5860c1dbc38cc3e31a4 (patch) | |
tree | 0c14059be82d288dad8279c40e70d2eaef1afbac /ui/plugin.js | |
parent | 32720810d82914441c088068e5b52297e0c95192 (diff) | |
download | jquery-ui-5f41f9c6a8b143392452c5860c1dbc38cc3e31a4.tar.gz jquery-ui-5f41f9c6a8b143392452c5860c1dbc38cc3e31a4.zip |
Plugin: Fix line length issues
Ref gh-1690
Diffstat (limited to 'ui/plugin.js')
-rw-r--r-- | ui/plugin.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/plugin.js b/ui/plugin.js index 0f1d9b040..b282de7c6 100644 --- a/ui/plugin.js +++ b/ui/plugin.js @@ -28,7 +28,8 @@ return $.ui.plugin = { return; } - if ( !allowDisconnected && ( !instance.element[ 0 ].parentNode || instance.element[ 0 ].parentNode.nodeType === 11 ) ) { + if ( !allowDisconnected && ( !instance.element[ 0 ].parentNode || + instance.element[ 0 ].parentNode.nodeType === 11 ) ) { return; } |