Skip to content

Commit

Permalink
Merge pull request #191 from drub0y/master
Browse files Browse the repository at this point in the history
Fix for bug in signalR::stop
  • Loading branch information
davidfowl committed Feb 12, 2012
2 parents b3fc2d7 + ef99a12 commit fc36f8f
Show file tree
Hide file tree
Showing 8 changed files with 128 additions and 78 deletions.
2 changes: 1 addition & 1 deletion SignalR.Hosting.AspNet.Samples/Scripts/jquery.signalR.js
Expand Up @@ -282,7 +282,7 @@
delete connection.groups;

// Trigger the disconnect event
$connection.trigger(events.onDisconnect);
$(connection).trigger(events.onDisconnect);

return connection;
},
Expand Down

Large diffs are not rendered by default.

178 changes: 119 additions & 59 deletions SignalR.Hosting.Owin.Samples/Content/Scripts/jquery.signalR.js

Large diffs are not rendered by default.

Large diffs are not rendered by default.

11 changes: 4 additions & 7 deletions SignalR.Hosting.Owin.Samples/SignalR.Hosting.Owin.Samples.csproj
Expand Up @@ -210,11 +210,8 @@
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<Target Name="BeforeBuild">
<Copy SourceFiles="..\SignalR\Scripts\jquery.signalR.js" DestinationFiles="Content\Scripts\jquery.signalR.js" />
<Copy SourceFiles="..\SignalR\Scripts\jquery.signalR.min.js" DestinationFiles="Content\Scripts\jquery.signalR.min.js" />
</Target>
</Project>
7 changes: 0 additions & 7 deletions SignalR.Hosting.Owin/SignalR.Hosting.Owin.csproj
Expand Up @@ -74,11 +74,4 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
2 changes: 1 addition & 1 deletion SignalR/Scripts/jquery.signalR.js
Expand Up @@ -282,7 +282,7 @@
delete connection.groups;

// Trigger the disconnect event
$connection.trigger(events.onDisconnect);
$(connection).trigger(events.onDisconnect);

return connection;
},
Expand Down
2 changes: 1 addition & 1 deletion SignalR/Scripts/jquery.signalR.min.js

Large diffs are not rendered by default.

0 comments on commit fc36f8f

Please sign in to comment.