Skip to content

Commit 98814a9

Browse files
committed
refactoring
1 parent f15816a commit 98814a9

File tree

6 files changed

+121
-43
lines changed

6 files changed

+121
-43
lines changed

.bowerrc

Lines changed: 0 additions & 4 deletions
This file was deleted.

.gitattributes

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto
3+
4+
# JS files must always use LF for tools to work
5+
*.js eol=lf

.gitignore

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,22 @@ lib-cov
1212
pids
1313
results
1414

15+
# npm
1516
npm-debug.log
17+
18+
# windows
1619
Thumbs.db
1720
desktop.ini
1821

22+
# third party libraries
1923
node_modules
2024
vendor
21-
yeoman
22-
nbproject
23-
.sass-cache
24-
25-
downloads
26-
client_build
2725

28-
configuration.js
26+
# IDEs
27+
nbproject/private
28+
.vs
29+
*.user
30+
.ntvs_analysis.dat
31+
.ntvs_analysis.dat.tmp
32+
*.njsperf
33+
Output-Npm.txt

bower.json

Lines changed: 0 additions & 32 deletions
This file was deleted.

waveform-visualizer.njsproj

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<PropertyGroup>
4+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
5+
<SchemaVersion>2.0</SchemaVersion>
6+
<ProjectGuid>{90a752d4-9f39-46c0-8a6b-69cad616a27f}</ProjectGuid>
7+
<ProjectHome />
8+
<ProjectView>ShowAllFiles</ProjectView>
9+
<StartupFile />
10+
<WorkingDirectory>.</WorkingDirectory>
11+
<OutputPath>.</OutputPath>
12+
<ProjectTypeGuids>{3AF33F2E-1136-4D97-BBB7-1795711AC8B8};{349c5851-65df-11da-9384-00065b846f21};{9092AA53-FB77-4645-B42D-1CCCA6BD08BD}</ProjectTypeGuids>
13+
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">11.0</VisualStudioVersion>
14+
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
15+
</PropertyGroup>
16+
<PropertyGroup Condition="'$(Configuration)' == 'Debug'" />
17+
<PropertyGroup Condition="'$(Configuration)' == 'Release'" />
18+
<ItemGroup>
19+
<Content Include="README.md" />
20+
<Content Include="examples\waveform-server-data.html" />
21+
<Content Include="examples\waveform-test-data.html" />
22+
<Content Include="examples\images\waveform.png" />
23+
<Compile Include="examples\client\scripts\main-server-data.js" />
24+
<Compile Include="examples\client\scripts\main-test-data.js" />
25+
<Compile Include="examples\client\scripts\library\event.js" />
26+
<Compile Include="source\scripts\library\ajax.js" />
27+
<Compile Include="source\scripts\library\canvas.js" />
28+
<Compile Include="source\scripts\library\core.js" />
29+
</ItemGroup>
30+
<ItemGroup>
31+
<Folder Include="examples" />
32+
<Folder Include="examples\client" />
33+
<Folder Include="examples\client\scripts" />
34+
<Folder Include="examples\client\scripts\library" />
35+
<Folder Include="examples\images" />
36+
<Folder Include="source" />
37+
<Folder Include="source\scripts" />
38+
<Folder Include="source\scripts\library" />
39+
</ItemGroup>
40+
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
41+
<!--Do not delete the following Import Project. While this appears to do nothing it is a marker for setting TypeScript properties before our import that depends on them.-->
42+
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\TypeScript\Microsoft.TypeScript.targets" Condition="False" />
43+
<Import Project="$(VSToolsPath)\Node.js Tools\Microsoft.NodejsTools.targets" />
44+
<ProjectExtensions>
45+
<VisualStudio>
46+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
47+
<WebProjectProperties>
48+
<UseIIS>False</UseIIS>
49+
<AutoAssignPort>True</AutoAssignPort>
50+
<DevelopmentServerPort>0</DevelopmentServerPort>
51+
<DevelopmentServerVPath>/</DevelopmentServerVPath>
52+
<IISUrl>http://localhost:48022/</IISUrl>
53+
<NTLMAuthentication>False</NTLMAuthentication>
54+
<UseCustomServer>True</UseCustomServer>
55+
<CustomServerUrl>http://localhost:1337</CustomServerUrl>
56+
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
57+
</WebProjectProperties>
58+
</FlavorProperties>
59+
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}" User="">
60+
<WebProjectProperties>
61+
<StartPageUrl>
62+
</StartPageUrl>
63+
<StartAction>CurrentPage</StartAction>
64+
<AspNetDebugging>True</AspNetDebugging>
65+
<SilverlightDebugging>False</SilverlightDebugging>
66+
<NativeDebugging>False</NativeDebugging>
67+
<SQLDebugging>False</SQLDebugging>
68+
<ExternalProgram>
69+
</ExternalProgram>
70+
<StartExternalURL>
71+
</StartExternalURL>
72+
<StartCmdLineArguments>
73+
</StartCmdLineArguments>
74+
<StartWorkingDirectory>
75+
</StartWorkingDirectory>
76+
<EnableENC>False</EnableENC>
77+
<AlwaysStartWebServerOnDebug>False</AlwaysStartWebServerOnDebug>
78+
</WebProjectProperties>
79+
</FlavorProperties>
80+
</VisualStudio>
81+
</ProjectExtensions>
82+
</Project>

waveform-visualizer.sln

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.24720.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9092AA53-FB77-4645-B42D-1CCCA6BD08BD}") = "waveform-visualizer", "waveform-visualizer.njsproj", "{90A752D4-9F39-46C0-8A6B-69CAD616A27F}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{90A752D4-9F39-46C0-8A6B-69CAD616A27F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{90A752D4-9F39-46C0-8A6B-69CAD616A27F}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{90A752D4-9F39-46C0-8A6B-69CAD616A27F}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{90A752D4-9F39-46C0-8A6B-69CAD616A27F}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
EndGlobal

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy