Skip to content

Commit 876ecaf

Browse files
committed
Initial commit of jQuery-File-Upload.MVC3 implementation
0 parents  commit 876ecaf

File tree

136 files changed

+94680
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+94680
-0
lines changed

.gitignore

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
Thumbs.db
2+
*.obj
3+
*.exe
4+
*.pdb
5+
*.user
6+
*.aps
7+
*.pch
8+
*.vspscc
9+
*_i.c
10+
*_p.c
11+
*.ncb
12+
*.suo
13+
*.sln.docstates
14+
*.tlb
15+
*.tlh
16+
*.bak
17+
*.cache
18+
*.ilk
19+
*.log
20+
[Bb]in
21+
[Dd]ebug*/
22+
*.lib
23+
*.sbr
24+
obj/
25+
[Rr]elease*/
26+
_ReSharper*/
27+
[Tt]est[Rr]esult*

jQuery-File-Upload.MVC3.sln

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
# Visual Studio 2010
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "jQuery-File-Upload.MVC3", "jQuery-File-Upload.MVC3\jQuery-File-Upload.MVC3.csproj", "{0025B4B5-067A-49F6-B34B-4F603B51A726}"
5+
EndProject
6+
Global
7+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
8+
Debug|Any CPU = Debug|Any CPU
9+
Release|Any CPU = Release|Any CPU
10+
EndGlobalSection
11+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
12+
{0025B4B5-067A-49F6-B34B-4F603B51A726}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
13+
{0025B4B5-067A-49F6-B34B-4F603B51A726}.Debug|Any CPU.Build.0 = Debug|Any CPU
14+
{0025B4B5-067A-49F6-B34B-4F603B51A726}.Release|Any CPU.ActiveCfg = Release|Any CPU
15+
{0025B4B5-067A-49F6-B34B-4F603B51A726}.Release|Any CPU.Build.0 = Release|Any CPU
16+
EndGlobalSection
17+
GlobalSection(SolutionProperties) = preSolution
18+
HideSolutionNode = FALSE
19+
EndGlobalSection
20+
EndGlobal
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<map />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
2+
<map />
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
@charset 'UTF-8';
2+
.modal-gallery{width:auto;max-height:none;}
3+
.modal-gallery .modal-image{position:relative;margin:auto;min-width:128px;min-height:128px;overflow:hidden;cursor:pointer;}
4+
.modal-loading .modal-image{background:url(../img/loading.gif) center no-repeat;}
5+
.modal-gallery.fade .modal-image{-webkit-transition:width 0.15s ease, height 0.15s ease;-moz-transition:width 0.15s ease, height 0.15s ease;-ms-transition:width 0.15s ease, height 0.15s ease;-o-transition:width 0.15s ease, height 0.15s ease;transition:width 0.15s ease, height 0.15s ease;}
6+
.modal-gallery .modal-image *{position:absolute;top:0;opacity:0;filter:alpha(opacity=0);}
7+
.modal-gallery.fade .modal-image *{-webkit-transition:opacity 0.5s linear;-moz-transition:opacity 0.5s linear;-ms-transition:opacity 0.5s linear;-o-transition:opacity 0.5s linear;transition:opacity 0.5s linear;}
8+
.modal-gallery .modal-image *.in{opacity:1;filter:alpha(opacity=100);}
9+
.modal-fullscreen{border:none;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;background:transparent;overflow:hidden;}
10+
.modal-fullscreen.modal-loading{border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
11+
.modal-fullscreen .modal-body{padding:0;}
12+
.modal-fullscreen .modal-header,.modal-fullscreen .modal-footer{position:absolute;top:0;right:0;left:0;background:transparent;border:0;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;opacity:0;z-index:2000;}
13+
.modal-fullscreen .modal-footer{top:auto;bottom:0;}
14+
.modal-fullscreen .close,.modal-fullscreen .modal-title{color:#fff;text-shadow:0 0 2px rgba(33, 33, 33, 0.8);}
15+
.modal-fullscreen .modal-header:hover,.modal-fullscreen .modal-footer:hover{opacity:1;}
16+
@media (max-width:480px){.modal-gallery .btn span{display:none;}}

jQuery-File-Upload.MVC3/Content/Bootstrap/bootstrap-image-gallery.min.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

jQuery-File-Upload.MVC3/Content/Bootstrap/bootstrap-responsive.min.css

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)