mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-04-21 16:06:16 -04:00
Make iframe selectors work with jquery 1.9
This commit is contained in:
parent
8d8487dfa6
commit
70c0591d35
1 changed files with 2 additions and 2 deletions
|
@ -85,8 +85,8 @@ var helper = {};
|
||||||
return !$iframe.contents().find("#editorloadingbox").is(":visible");
|
return !$iframe.contents().find("#editorloadingbox").is(":visible");
|
||||||
}, 50000).done(function(){
|
}, 50000).done(function(){
|
||||||
helper.padChrome$ = getFrameJQuery( $('#iframe-container iframe'));
|
helper.padChrome$ = getFrameJQuery( $('#iframe-container iframe'));
|
||||||
helper.padOuter$ = getFrameJQuery(helper.padChrome$('iframe.[name="ace_outer"]'));
|
helper.padOuter$ = getFrameJQuery(helper.padChrome$('iframe[name="ace_outer"]'));
|
||||||
helper.padInner$ = getFrameJQuery( helper.padOuter$('iframe.[name="ace_inner"]'));
|
helper.padInner$ = getFrameJQuery( helper.padOuter$('iframe[name="ace_inner"]'));
|
||||||
|
|
||||||
//disable all animations, this makes tests faster and easier
|
//disable all animations, this makes tests faster and easier
|
||||||
helper.padChrome$.fx.off = true;
|
helper.padChrome$.fx.off = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue