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:
4 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/store/CouchStore.js

    r418 r426  
    271271                dfd.reject(getCouchError(err));
    272272            });
    273             return CouchResults(dfd.promise);
     273            return couchResults(dfd.promise);
    274274        }
    275275    });
    276276
    277     function CouchResults(results) {
    278         results = QueryResults(results);
     277    var queryResults = QueryResults;
     278
     279    function couchResults(results) {
     280        results = queryResults(results);
    279281        results.forPairs = function(callback,thisObject) {
    280282            callback = lang.hitch(thisObject,callback);
  • Dev/trunk/client/qed/store/ElasticReadStore.js

    r410 r426  
    2323            });
    2424            return this.inherited(arguments);
    25           },
     25        },
    2626        _fetchItems: function(request, fetchHandler, errorHandler){
    2727            var serverQuery = request.serverQuery;
Note: See TracChangeset for help on using the changeset viewer.