Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6,728 changes: 6,728 additions & 0 deletions src/ServicePulse.Host/Scripts/jquery-1.11.3-vsdoc.js

Large diffs are not rendered by default.

10,351 changes: 10,351 additions & 0 deletions src/ServicePulse.Host/Scripts/jquery-1.11.3.js

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions src/ServicePulse.Host/Scripts/jquery-1.11.3.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/ServicePulse.Host/Scripts/jquery-1.11.3.min.map

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions src/ServicePulse.Host/app/js/services/services.stream.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,10 @@
var subscriberDictionary = subscriberRegistry[messageType];

for (var key in subscriberDictionary) {
if ($jquery.isFunction(subscriberDictionary[key])) {
subscriberDictionary[key].call(undefined, message);
if (subscriberDictionary.hasOwnProperty(key)) {
if ($jquery.isFunction(subscriberDictionary[key])) {
subscriberDictionary[key].call(undefined, message);
}
}
}
};
Expand All @@ -65,7 +67,7 @@

var uniqueKey = registryKey++;

subscriberRegistry[messageType][uniqueKey] = function (event, message) {
subscriberRegistry[messageType][uniqueKey] = function (message) {
handler(message);
};

Expand Down
7 changes: 7 additions & 0 deletions src/ServicePulse.sln
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SmokeTest.3rdParty", "Smoke
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SmokeTest.Shared", "SmokeTest.Shared\SmokeTest.Shared.csproj", "{122AD54A-B249-41C7-858F-CB75E7C0F463}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SmokeTest.SignalrClient", "SmokeTest.SignalrClient\SmokeTest.SignalrClient.csproj", "{C23C4E96-744E-49F6-A4AB-9324E43A166A}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -66,6 +68,10 @@ Global
{122AD54A-B249-41C7-858F-CB75E7C0F463}.Debug|Any CPU.Build.0 = Debug|Any CPU
{122AD54A-B249-41C7-858F-CB75E7C0F463}.Release|Any CPU.ActiveCfg = Release|Any CPU
{122AD54A-B249-41C7-858F-CB75E7C0F463}.Release|Any CPU.Build.0 = Release|Any CPU
{C23C4E96-744E-49F6-A4AB-9324E43A166A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C23C4E96-744E-49F6-A4AB-9324E43A166A}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C23C4E96-744E-49F6-A4AB-9324E43A166A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C23C4E96-744E-49F6-A4AB-9324E43A166A}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand All @@ -76,5 +82,6 @@ Global
{CBC386E8-36FB-4427-A212-88F75C65A6A9} = {E4018B8E-ED2B-464C-B9A7-70BD97448D4B}
{267DA5B2-2F82-4F26-A8B3-E164B226FA98} = {E4018B8E-ED2B-464C-B9A7-70BD97448D4B}
{122AD54A-B249-41C7-858F-CB75E7C0F463} = {E4018B8E-ED2B-464C-B9A7-70BD97448D4B}
{C23C4E96-744E-49F6-A4AB-9324E43A166A} = {E4018B8E-ED2B-464C-B9A7-70BD97448D4B}
EndGlobalSection
EndGlobal
35 changes: 35 additions & 0 deletions src/SmokeTest.SignalrClient/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("SmokeTest.SignalrClient")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("SmokeTest.SignalrClient")]
[assembly: AssemblyCopyright("Copyright © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("c23c4e96-744e-49f6-a4ab-9324e43a166a")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Revision and Build Numbers
// by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
2,657 changes: 2,657 additions & 0 deletions src/SmokeTest.SignalrClient/Scripts/jquery-1.11.3.intellisense.js

Large diffs are not rendered by default.

Loading