Show
Ignore:
Timestamp:
02/21/07 14:54:01 (21 months ago)
Author:
jburke
Message:

References #2366. Converting more tests to use dojo.addOnLoad()

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.4/tests/widget/Editor/test_Editor2_shared.html

    r6401 r7394  
    55        <title>Dojo Editor2 shared Toolbar and ContextMenu Test</title> 
    66        <script type="text/javascript"> 
    7                 var djConfig = { isDebug: true }; 
     7                djConfig = { 
     8                        isDebug: true, 
     9                        dojoRichTextFrameUrl: "../../../src/widget/templates/richtextframe.html" //for xdomain 
     10                }; 
    811        </script> 
    912 
     
    1316                dojo.require("dojo.widget.Editor2Plugin.ContextMenu"); 
    1417                dojo.require("dojo.widget.Editor2Plugin.SimpleSignalCommands"); 
    15                 dojo.widget.Editor2Plugin.ContextMenuManager.registerGroupSet('menugroup1',['Generic']) 
     18                dojo.addOnLoad(function(){ 
     19                        dojo.widget.Editor2Plugin.ContextMenuManager.registerGroupSet('menugroup1',['Generic']); 
     20                }); 
    1621        </script> 
    1722</head>