AppContext Provider
        
        
        
- Copyright:
 - Kiwigrid GmbH 2014-2015
 
- Source:
 
Classes
Methods
- 
    
<inner> get(key) → {*}
 - 
    
    
    
Get value by key from app context object. There
keyis a string in dot notation to describe object properties with hierarchy.Parameters:
Name Type Description keystring key to retrieve from app context - Source:
 
Returns:
* Object extracted from AppContextExample
angular.module('exampleApp', ['keta.services.AppContext']) .config(function(ketaAppContextProvider) { var socketURL = ketaAppContextProvider.get('bus.url'); });