Let plugins use rpcCall()
authorDarren <darren@darrenwhitlen.com>
Sat, 31 May 2014 20:30:40 +0000 (21:30 +0100)
committerDarren <darren@darrenwhitlen.com>
Sat, 31 May 2014 20:30:40 +0000 (21:30 +0100)
client/src/app.js

index 748a28b4c87468d4803cc7f728cdecbf1837113b..e4b6523d7d2e57e6e19b78e9ca85da993211adaf 100644 (file)
@@ -120,6 +120,9 @@ _kiwi.global = {
             // Event emitter to let plugins interface with parts of kiwi\r
             _kiwi.global.events  = new PluginInterface();\r
 \r
+            // Let plugins interface with the RPC calls\r
+            _kiwi.globals.rpcCall = _kiwi.gateway.rpcCall;\r
+\r
             // Now everything has started up, load the plugin manager for third party plugins\r
             _kiwi.global.plugins = new _kiwi.model.PluginManager();\r
 \r
@@ -350,4 +353,4 @@ if (typeof global !== 'undefined') {
 } else {\r
     // Not within a closure so set a var in the current scope\r
     var kiwi = _kiwi.global;\r
-}
\ No newline at end of file
+}\r