Jquery-Layout抛出错误,因为$ N.selector未定义

我正在尝试移植遗留项目,它使用了Jquery-Layout。 当我尝试启动应用程序时,它就行了…

sC.selector = $N.selector.split(".slice")[0]; 

和barfs ……

无法读取undefined的属性’split’

现在我对这个库知之甚少,但如果我在失败点断点,我看到$N instanceof jQuery返回true,我在集合中看到一个DOM元素。 是否有可能没有选择器?

对于jquery.layout 1.4.4,只需注释第1831行:sC.selector = $ N.selector.split(“。slice”)[0]; 并且所有工作正常(在jQuery v3.3.1上测试)