CallR.Angular
1.1.2
dotnet add package CallR.Angular --version 1.1.2
NuGet\Install-Package CallR.Angular -Version 1.1.2
<PackageReference Include="CallR.Angular" Version="1.1.2" />
paket add CallR.Angular --version 1.1.2
#r "nuget: CallR.Angular, 1.1.2"
// Install CallR.Angular as a Cake Addin #addin nuget:?package=CallR.Angular&version=1.1.2 // Install CallR.Angular as a Cake Tool #tool nuget:?package=CallR.Angular&version=1.1.2
JavaScript files for the CallR.Angular library.
Visit https://github.com/tejacques/callr for an overview and usage examples.
Learn more about Target Frameworks and .NET Standard.
-
- CallR.JS (>= 1.1.3)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Notes:
Version 1.1.2:
- Change hubFactory from a factory to a provider so that options can be configured in angular.
Version 1.1.1:
- Updated dependency on CallR.JS to add new smartDisconnect config option.
Version 1.1.0:
- hub.rpc is now a function which can take parameters, removing the need to make hub proxies
- optional last parameter to hub calls for filtering response
- dependency on CallR.JS >=1.1.0
Version 1.0.3:
- Properly bind and unbind the callbacks supplied to hub.bindEvent and hub.unbindEvent
- Allow hub.bindEvent to be supplied with an optional scope. If the scope is supplied, scope.$digest() is called instead of $rootScope.$apply() after the callback. This is a performance optimization if you know that the changes will only affect that particular scope.
Version 1.0.2:
- Update dependencies
Version 1.0.1:
- Fix addRPC function to be wrapped in a $q promise
Version 1.0.0:
- Angular Injectible HubModule, with HubFactory.
- HubFactory.create(hubName): create a singleton hub with the given name or enhance a hub created by SignalR's autogenerated proxies. jQuery promises are converted to $q promises to automatically call $scope.$apply, allowing you to write clean familiar AngularJS.
- All other functions inherited from CallR.JS