Changeset 462


Ignore:
Timestamp:
06/10/13 01:14:46 (12 years ago)
Author:
hendrikvanantwerpen
Message:

Fixed for jshint and allow clean of the build directory.

Location:
Dev/trunk/src
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk/src/Gruntfile.js

    r458 r462  
    1717    grunt.initConfig({
    1818        clean: {
    19             build: [buildDir]
     19            build: {
     20                options: {
     21                    force: true
     22                },
     23                src: [buildDir],
     24            }
    2025        },
    2126        copy: {
  • Dev/trunk/src/client/qed-client/model/widgets/questions/MultipleChoiceInputWidget.js

    r461 r462  
    2525                }).placeAt(div);
    2626                var label = domConstruct.create("label",{
    27                     for: input.id,
     27                    'for': input.id,
    2828                    innerHTML: item.text
    2929                }, div);
  • Dev/trunk/src/server/server.js

    r459 r462  
    3131app.use('/data/couch', proxy('http://localhost:5984/qed'));
    3232
    33 var server = https.createServer(httpsOptions, app)
     33var server = https.createServer(httpsOptions, app);
    3434server.listen(8443);
    3535
Note: See TracChangeset for help on using the changeset viewer.