Skip to content

Commit 04b94ca

Browse files
committed
moved script code from index page to index.js
1 parent a210170 commit 04b94ca

11 files changed

Lines changed: 19081 additions & 83 deletions

File tree

PointerApplication/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,6 @@
1212
</assemblyBinding>
1313
</runtime>
1414
<appSettings>
15-
<add key="rootFolder" value="./www"/>
15+
<add key="rootFolder" value="./www" />
1616
</appSettings>
1717
</configuration>

PointerApplication/PointerServer.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,8 @@
6262
<SignManifests>true</SignManifests>
6363
</PropertyGroup>
6464
<ItemGroup>
65-
<Reference Include="Microsoft.AspNet.SignalR.Client">
65+
<Reference Include="Microsoft.AspNet.SignalR.Client, Version=2.2.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
66+
<SpecificVersion>False</SpecificVersion>
6667
<HintPath>..\packages\Microsoft.AspNet.SignalR.Client.2.2.0\lib\net45\Microsoft.AspNet.SignalR.Client.dll</HintPath>
6768
</Reference>
6869
<Reference Include="Microsoft.AspNet.SignalR.Core">
@@ -188,6 +189,11 @@
188189
</None>
189190
</ItemGroup>
190191
<ItemGroup>
192+
<Content Include="scripts\jquery-1.6.4-vsdoc.js" />
193+
<Content Include="scripts\jquery-1.6.4.js" />
194+
<Content Include="scripts\jquery-1.6.4.min.js" />
195+
<Content Include="scripts\jquery.signalR-2.2.0.js" />
196+
<Content Include="scripts\jquery.signalR-2.2.0.min.js" />
191197
<Content Include="www\index.html">
192198
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
193199
</Content>

PointerApplication/Startup.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ public void Configuration(IAppBuilder app)
2525
{
2626
"index.html"
2727
};
28-
28+
2929
app.UseFileServer(options);
3030
app.UseCors(CorsOptions.AllowAll);
3131
app.UseFileServer(options);
32+
app.MapSignalR();
3233
}
3334
}
3435
}
288 Bytes
Loading

0 commit comments

Comments
 (0)