Skip to content
This repository was archived by the owner on Apr 17, 2025. It is now read-only.

Commit 34471ee

Browse files
committed
republishing 1.2.4 build to fix issues with symlinks
1 parent 4dd59bc commit 34471ee

File tree

111 files changed

+2945
-1179
lines changed

Some content is hidden

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

111 files changed

+2945
-1179
lines changed

1.2.4/angular-1.2.4.zip

47 Bytes
Binary file not shown.

1.2.4/docs/appcache-offline.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# 2013-12-06T18:49:33.281Z
2+
# 2013-12-07T10:39:22.697Z
33

44
# cache all of these
55
CACHE:

1.2.4/docs/appcache.manifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
CACHE MANIFEST
2-
# 2013-12-06T18:49:31.995Z
2+
# 2013-12-07T10:39:21.083Z
33

44
# cache all of these
55
CACHE:

1.2.4/docs/css

Lines changed: 0 additions & 1 deletion
This file was deleted.

1.2.4/docs/css/animations.css

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,62 @@
1+
.reveal.ng-enter {
2+
-webkit-transition:1s linear all;
3+
-moz-transition:1s linear all;
4+
-o-transition:1s linear all;
5+
transition:1s linear all;
6+
7+
opacity:0;
8+
}
9+
.reveal.ng-enter.ng-enter-active {
10+
opacity:1;
11+
}
12+
13+
.nav-list {
14+
padding: 0;
15+
}
16+
17+
.nav-list li {
18+
margin:0!important;
19+
padding:2px 15px;
20+
overflow:hidden;
21+
line-height:1.1em;
22+
}
23+
24+
.slide-reveal.ng-enter {
25+
-webkit-transition:0.5s linear all;
26+
-moz-transition:0.5s linear all;
27+
-o-transition:0.5s linear all;
28+
transition:0.5s linear all;
29+
30+
opacity:0.5;
31+
position:relative;
32+
opacity:0;
33+
top:10px;
34+
}
35+
.slide-reveal.ng-enter.ng-enter-active {
36+
top:0;
37+
opacity:1;
38+
}
39+
40+
.foldout.ng-enter,
41+
.foldout.ng-move,
42+
.foldout.ng-hide-add,
43+
.foldout.ng-hide-remove {
44+
-webkit-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
45+
-moz-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
46+
-o-transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
47+
transition:0.3s cubic-bezier(0.250, 0.460, 0.450, 0.940) all;
48+
}
49+
50+
.foldout.ng-hide-remove,
51+
.foldout.ng-hide-add.ng-hide-active,
52+
.foldout.ng-enter,
53+
.foldout.ng-move {
54+
opacity:0;
55+
}
56+
57+
.foldout.ng-move.ng-move-active,
58+
.foldout.ng-hide-remove.ng-hide-remove-active,
59+
.foldout.ng-hide-add,
60+
.foldout.ng-enter.ng-enter-active {
61+
opacity:1;
62+
}

1.2.4/docs/css/doc_widgets.css

Lines changed: 150 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,150 @@
1+
ul.doc-example {
2+
list-style-type: none;
3+
position: relative;
4+
font-size: 14px;
5+
}
6+
7+
ul.doc-example > li {
8+
border: 2px solid gray;
9+
border-radius: 5px;
10+
-moz-border-radius: 5px;
11+
-webkit-border-radius: 5px;
12+
background-color: white;
13+
margin-bottom: 20px;
14+
}
15+
16+
ul.doc-example > li.doc-example-heading {
17+
border: none;
18+
border-radius: 0;
19+
margin-bottom: -10px;
20+
}
21+
22+
span.nojsfiddle {
23+
float: right;
24+
font-size: 14px;
25+
margin-right:10px;
26+
margin-top: 10px;
27+
}
28+
29+
form.jsfiddle {
30+
position: absolute;
31+
right: 0;
32+
z-index: 1;
33+
height: 14px;
34+
}
35+
36+
form.jsfiddle button {
37+
cursor: pointer;
38+
padding: 4px 10px;
39+
margin: 10px;
40+
background-color: #FFF;
41+
font-weight: bold;
42+
color: #7989D6;
43+
border-color: #7989D6;
44+
-moz-border-radius: 8px;
45+
-webkit-border-radius:8px;
46+
border-radius: 8px;
47+
}
48+
49+
form.jsfiddle textarea, form.jsfiddle input {
50+
display: none;
51+
}
52+
53+
li.doc-example-live {
54+
padding: 10px;
55+
font-size: 1.2em;
56+
}
57+
58+
div.syntaxhighlighter {
59+
padding-bottom: 1px !important; /* fix to remove unnecessary scrollbars http://is.gd/gSMgC */
60+
}
61+
62+
/* TABS - tutorial environment navigation */
63+
64+
div.tabs-nav {
65+
height: 25px;
66+
position: relative;
67+
}
68+
69+
div.tabs-nav ul li {
70+
list-style: none;
71+
display: inline-block;
72+
padding: 5px 10px;
73+
}
74+
75+
div.tabs-nav ul li.current a {
76+
color: white;
77+
text-decoration: none;
78+
}
79+
80+
div.tabs-nav ul li.current {
81+
background: #7989D6;
82+
-moz-box-shadow: 4px 4px 6px #48577D;
83+
-moz-border-radius-topright: 8px;
84+
-moz-border-radius-topleft: 8px;
85+
box-shadow: 4px 4px 6px #48577D;
86+
border-radius-topright: 8px;
87+
border-radius-topleft: 8px;
88+
-webkit-box-shadow: 4px 4px 6px #48577D;
89+
-webkit-border-top-right-radius: 8px;
90+
-webkit-border-top-left-radius: 8px;
91+
border-top-right-radius: 8px;
92+
border-top-left-radius: 8px;
93+
}
94+
95+
div.tabs-content {
96+
padding: 4px;
97+
position: relative;
98+
background: #7989D6;
99+
-moz-border-radius: 8px;
100+
border-radius: 8px;
101+
-webkit-border-radius: 8px;
102+
}
103+
104+
div.tabs-content-inner {
105+
margin: 1px;
106+
padding: 10px;
107+
background: white;
108+
border-radius: 6px;
109+
-moz-border-radius: 6px;
110+
-webkit-border-radius: 6px;
111+
}
112+
113+
114+
/* Tutorial Nav Bar */
115+
116+
#tutorial-nav {
117+
margin: 0.5em 0 1em 0;
118+
padding: 0;
119+
list-style-type: none;
120+
background: #7989D6;
121+
122+
-moz-border-radius: 15px;
123+
-webkit-border-radius: 15px;
124+
border-radius: 15px;
125+
126+
-moz-box-shadow: 4px 4px 6px #48577D;
127+
-webkit-box-shadow: 4px 4px 6px #48577D;
128+
box-shadow: 4px 4px 6px #48577D;
129+
}
130+
131+
132+
#tutorial-nav li {
133+
display: inline;
134+
}
135+
136+
137+
#tutorial-nav a:link, #tutorial-nav a:visited {
138+
font-size: 1.2em;
139+
color: #FFF;
140+
text-decoration: none;
141+
text-align: center;
142+
display: inline-block;
143+
width: 11em;
144+
padding: 0.2em 0;
145+
}
146+
147+
148+
#tutorial-nav a:hover {
149+
color: #000;
150+
}

0 commit comments

Comments
 (0)