Ignore:
Timestamp:
02/24/12 16:09:22 (13 years ago)
Author:
hendrikvanantwerpen
Message:

[Client] MultipleChoiceWidget? for editing multiple choice questions
[Client] Move templates to separate directories.
[Client] Created QuestionWidget? to edit complete questions.
[Client] Fixed startup race condition where parsing was started before all classes were loaded.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Dev/branches/rest-dojo-ui/client/rft/run.js

    r281 r288  
    11require([
     2    // functions required for run
     3    'dojo/_base/window','dojo/parser', 'rft/ui/LoginDialog',
     4    'dojo/dom', 'dojo/_base/connect', 'rft/auth', 'rft/content',
     5    'dojo/domReady!',
     6   
     7    // general widgets
    28    'dojo/data/ObjectStore',
    39    'dojo/store/JsonRest',
     
    2329    'rft/ui/QuestionWidget',
    2430    'rft/ui/TitleGroup',
    25     'rft/pages/questions' // could this be done dynamically?
    26 ]);
    27 
    28 require(['dojo/_base/window','dojo/parser', 'rft/ui/LoginDialog',
    29     'dojo/dom', 'dojo/_base/connect', 'rft/auth', 'rft/content',
    30     'dojo/domReady!' ],
     31   
     32    // pages -> load dynamically?
     33    'rft/pages/questions'],
    3134    function(win,parser,LoginDialog,dom,connect,auth,content) {
    3235        parser.parse();
Note: See TracChangeset for help on using the changeset viewer.