Skip to content

Commit

Permalink
checking in more files
Browse files Browse the repository at this point in the history
  • Loading branch information
BraveNewMath committed Mar 31, 2013
1 parent 599a899 commit d901725
Show file tree
Hide file tree
Showing 30 changed files with 31,885 additions and 49 deletions.
16 changes: 16 additions & 0 deletions Default.aspx
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="WebApplication1._Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>

</div>
</form>
</body>
</html>
17 changes: 17 additions & 0 deletions Default.aspx.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;

namespace WebApplication1
{
public partial class _Default : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{

}
}
}
26 changes: 26 additions & 0 deletions Default.aspx.designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

35 changes: 35 additions & 0 deletions 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("WebApplication1")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("WebApplication1")]
[assembly: AssemblyCopyright("Copyright © 2013")]
[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("997d9ef0-d0b5-4dd1-8e6d-17ec9a32a29d")]

// 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")]
20 changes: 20 additions & 0 deletions Scripts/comparison.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/// <reference path="jquery-1.9.1.intellisense.js" />
var c = {
startup: {
begin: function () {
var ctx = c.startup;
ctx.alternatingTbleRowstyles();
ctx.setupAudioEffectsForHyperlinks();
},
alternatingTbleRowstyles: function () {
$('.comparisonTable tr:even').addClass('even');
$('.comparisonTable tr:odd').addClass('odd');
},
setupAudioEffectsForHyperlinks:function(){

}
}

};

$(c.startup.begin);
2,657 changes: 2,657 additions & 0 deletions Scripts/jquery-1.9.1.intellisense.js

Large diffs are not rendered by default.

Loading

0 comments on commit d901725

Please sign in to comment.