Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 565 Bytes

0.13.15_2014-07-08.md

File metadata and controls

19 lines (15 loc) · 565 Bytes

0.13.15

  • patches
    • the gh-core context is passed into the configuration method if an argument is supplied, so now there are two mutually exclussive ways of configuring core:
      • using a passed in context

        grasshopper.configure(function(core){
            core.config = ...
        });            
      • using a bound context

        grasshopper.configure(function(){
            this.config = ...
        });