Ignore:
Timestamp:
03/13/13 17:07:58 (12 years ago)
Author:
hendrikvanantwerpen
Message:

Added grunt tasks and code cleanup.

Added grunt for less and jshint procesing.
Cleanup of code to pass jshint (one bug found :).

Location:
Dev/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • Dev/trunk

    • Property svn:ignore
      •  

        old new  
        11data
        22nbproject
         3node_modules
  • Dev/trunk/client

    • Property svn:externals
      •  

        old new  
        1 dojo http://svn.dojotoolkit.org/src/tags/release-1.8.0/dojo
        2 dijit http://svn.dojotoolkit.org/src/tags/release-1.8.0/dijit
        3 dojox http://svn.dojotoolkit.org/src/tags/release-1.8.0/dojox
        4 util http://svn.dojotoolkit.org/src/tags/release-1.8.0/util
         1dojo http://svn.dojotoolkit.org/src/tags/release-1.8.3/dojo
         2dijit http://svn.dojotoolkit.org/src/tags/release-1.8.3/dijit
         3dojox http://svn.dojotoolkit.org/src/tags/release-1.8.3/dojox
         4util http://svn.dojotoolkit.org/src/tags/release-1.8.3/util
  • Dev/trunk/client/qed/widgets/Selector.js

    r417 r426  
    7070                                        action.callback),
    7171                        properties: {
    72                              blockButton: true,
    73                              label: action.title || actionName,
    74                              icon: action.icon,
    75                              tooltip: action.description
    76                          }
     72                            blockButton: true,
     73                            label: action.title || actionName,
     74                            icon: action.icon,
     75                            tooltip: action.description
     76                        }
    7777
    7878                    };
     
    145145                this._folded = true;
    146146            }
    147             evt && event.stop(evt);
     147            if ( evt ) { event.stop(evt); }
    148148            return false;
    149149        },
     
    174174        },
    175175
    176         onSelect: function(item) {}
     176        onSelect: function(/*item*/) {}
    177177    });
    178178});
Note: See TracChangeset for help on using the changeset viewer.