Skip to content

Commit b0fc853

Browse files
committed
added 3rd example, using jquery too
1 parent cf81063 commit b0fc853

20 files changed

+30356
-30
lines changed

ModularDemo/ModularDemo.csproj

Lines changed: 17 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -57,16 +57,24 @@
5757
<Reference Include="System.EnterpriseServices" />
5858
</ItemGroup>
5959
<ItemGroup>
60-
<Content Include="ScriptsBefore\alerter.js" />
61-
<Content Include="ScriptsBefore\dataservice.js" />
62-
<Content Include="ScriptsBefore\main.js" />
63-
<Content Include="index.before.html" />
64-
<Content Include="index.after.html" />
60+
<Content Include="index3.html" />
61+
<Content Include="Scripts1\jquery-1.7.2.js" />
62+
<Content Include="Scripts3\alerter.js" />
63+
<Content Include="Scripts3\dataservice.js" />
64+
<Content Include="Scripts3\jquery-1.7.2.js" />
65+
<Content Include="Scripts3\main.js" />
66+
<Content Include="Scripts3\require.js" />
67+
<Content Include="Scripts1\alerter.js" />
68+
<Content Include="Scripts1\dataservice.js" />
69+
<Content Include="Scripts1\main.js" />
70+
<Content Include="index1.html" />
71+
<Content Include="index2.html" />
6572
<Content Include="Require.JS - LICENSE.txt" />
66-
<Content Include="Scripts\alerter.js" />
67-
<Content Include="Scripts\main.js" />
68-
<Content Include="Scripts\dataservice.js" />
69-
<Content Include="Scripts\require.js" />
73+
<Content Include="Scripts2\alerter.js" />
74+
<Content Include="Scripts2\jquery-1.7.2.js" />
75+
<Content Include="Scripts2\main.js" />
76+
<Content Include="Scripts2\dataservice.js" />
77+
<Content Include="Scripts2\require.js" />
7078
<Content Include="Web.config" />
7179
</ItemGroup>
7280
<ItemGroup>
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
var dataservice = (function () {
22
var
3+
msg = 'Welcome to Code Camp',
34
getMessage = function () {
4-
return 'Welcome to Code Camp';
5+
return msg;
56
};
67

78
return {

0 commit comments

Comments
 (0)