Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
todomvc
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Eugene Shen
todomvc
Commits
3ff63ae4
Commit
3ff63ae4
authored
Feb 05, 2015
by
Sindre Sorhus
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1123 from arthurvr/uiAngularjsPerf
Migrate `angularjs-perf` example to `todomvc-app-css`
parents
6763e25c
4429588e
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
583 additions
and
25 deletions
+583
-25
examples/angularjs-perf/.gitignore
examples/angularjs-perf/.gitignore
+9
-0
examples/angularjs-perf/bower_components/todomvc-common/bg.png
...les/angularjs-perf/bower_components/todomvc-common/bg.png
+0
-0
examples/angularjs-perf/bower_components/todomvc-common/bower.json
...angularjs-perf/bower_components/todomvc-common/bower.json
+0
-22
examples/angularjs-perf/index.html
examples/angularjs-perf/index.html
+4
-3
examples/angularjs-perf/node_modules/angular/angular.js
examples/angularjs-perf/node_modules/angular/angular.js
+0
-0
examples/angularjs-perf/node_modules/todomvc-app-css/index.css
...les/angularjs-perf/node_modules/todomvc-app-css/index.css
+394
-0
examples/angularjs-perf/node_modules/todomvc-common/base.css
examples/angularjs-perf/node_modules/todomvc-common/base.css
+141
-0
examples/angularjs-perf/node_modules/todomvc-common/base.js
examples/angularjs-perf/node_modules/todomvc-common/base.js
+27
-0
examples/angularjs-perf/package.json
examples/angularjs-perf/package.json
+8
-0
No files found.
examples/angularjs-perf/.gitignore
0 → 100644
View file @
3ff63ae4
node_modules/todomvc-common
!node_modules/todomvc-common/base.js
!node_modules/todomvc-common/base.css
node_modules/todomvc-app-css
!node_modules/todomvc-app-css/index.css
node_modules/angular
!node_modules/angular/angular.js
examples/angularjs-perf/bower_components/todomvc-common/bg.png
deleted
100644 → 0
View file @
6763e25c
2.08 KB
examples/angularjs-perf/bower_components/todomvc-common/bower.json
deleted
100644 → 0
View file @
6763e25c
{
"name"
:
"todomvc-common"
,
"description"
:
"Common TodoMVC utilities used by our apps"
,
"license"
:
"MIT"
,
"authors"
:
[
"TasteJS team"
],
"main"
:
[
"base.js"
,
"base.css"
],
"keywords"
:
[
"todomvc"
,
"tastejs"
,
"util"
,
"utilities"
],
"ignore"
:
[
"package.json"
,
"readme.md"
]
}
examples/angularjs-perf/index.html
View file @
3ff63ae4
...
...
@@ -3,7 +3,8 @@
<head>
<meta
charset=
"utf-8"
>
<title>
AngularJS • TodoMVC
</title>
<link
rel=
"stylesheet"
href=
"bower_components/todomvc-common/base.css"
>
<link
rel=
"stylesheet"
href=
"node_modules/todomvc-common/base.css"
>
<link
rel=
"stylesheet"
href=
"node_modules/todomvc-app-css/index.css"
>
<style>
[
ng-cloak
]
{
display
:
none
;
}
</style>
</head>
<body>
...
...
@@ -58,8 +59,8 @@
</p>
<p>
Part of
<a
href=
"http://todomvc.com"
>
TodoMVC
</a></p>
</footer>
<script
src=
"
bower_component
s/todomvc-common/base.js"
></script>
<script
src=
"
bower_component
s/angular/angular.js"
></script>
<script
src=
"
node_module
s/todomvc-common/base.js"
></script>
<script
src=
"
node_module
s/angular/angular.js"
></script>
<script
src=
"js/app.js"
></script>
<script
src=
"js/controllers/todoCtrl.js"
></script>
<script
src=
"js/services/todoStorage.js"
></script>
...
...
examples/angularjs-perf/
bower_component
s/angular/angular.js
→
examples/angularjs-perf/
node_module
s/angular/angular.js
View file @
3ff63ae4
File moved
examples/angularjs-perf/
bower_components/todomvc-common/base
.css
→
examples/angularjs-perf/
node_modules/todomvc-app-css/index
.css
View file @
3ff63ae4
This diff is collapsed.
Click to expand it.
examples/angularjs-perf/node_modules/todomvc-common/base.css
0 → 100644
View file @
3ff63ae4
hr
{
margin
:
20px
0
;
border
:
0
;
border-top
:
1px
dashed
#c5c5c5
;
border-bottom
:
1px
dashed
#f7f7f7
;
}
.learn
a
{
font-weight
:
normal
;
text-decoration
:
none
;
color
:
#b83f45
;
}
.learn
a
:hover
{
text-decoration
:
underline
;
color
:
#787e7e
;
}
.learn
h3
,
.learn
h4
,
.learn
h5
{
margin
:
10px
0
;
font-weight
:
500
;
line-height
:
1.2
;
color
:
#000
;
}
.learn
h3
{
font-size
:
24px
;
}
.learn
h4
{
font-size
:
18px
;
}
.learn
h5
{
margin-bottom
:
0
;
font-size
:
14px
;
}
.learn
ul
{
padding
:
0
;
margin
:
0
0
30px
25px
;
}
.learn
li
{
line-height
:
20px
;
}
.learn
p
{
font-size
:
15px
;
font-weight
:
300
;
line-height
:
1.3
;
margin-top
:
0
;
margin-bottom
:
0
;
}
#issue-count
{
display
:
none
;
}
.quote
{
border
:
none
;
margin
:
20px
0
60px
0
;
}
.quote
p
{
font-style
:
italic
;
}
.quote
p
:before
{
content
:
'“'
;
font-size
:
50px
;
opacity
:
.15
;
position
:
absolute
;
top
:
-20px
;
left
:
3px
;
}
.quote
p
:after
{
content
:
'”'
;
font-size
:
50px
;
opacity
:
.15
;
position
:
absolute
;
bottom
:
-42px
;
right
:
3px
;
}
.quote
footer
{
position
:
absolute
;
bottom
:
-40px
;
right
:
0
;
}
.quote
footer
img
{
border-radius
:
3px
;
}
.quote
footer
a
{
margin-left
:
5px
;
vertical-align
:
middle
;
}
.speech-bubble
{
position
:
relative
;
padding
:
10px
;
background
:
rgba
(
0
,
0
,
0
,
.04
);
border-radius
:
5px
;
}
.speech-bubble
:after
{
content
:
''
;
position
:
absolute
;
top
:
100%
;
right
:
30px
;
border
:
13px
solid
transparent
;
border-top-color
:
rgba
(
0
,
0
,
0
,
.04
);
}
.learn-bar
>
.learn
{
position
:
absolute
;
width
:
272px
;
top
:
8px
;
left
:
-300px
;
padding
:
10px
;
border-radius
:
5px
;
background-color
:
rgba
(
255
,
255
,
255
,
.6
);
transition-property
:
left
;
transition-duration
:
500ms
;
}
@media
(
min-width
:
899px
)
{
.learn-bar
{
width
:
auto
;
padding-left
:
300px
;
}
.learn-bar
>
.learn
{
left
:
8px
;
}
}
examples/angularjs-perf/
bower_component
s/todomvc-common/base.js
→
examples/angularjs-perf/
node_module
s/todomvc-common/base.js
View file @
3ff63ae4
/* global _ */
(
function
()
{
'
use strict
'
;
/* jshint ignore:start */
// Underscore's Template Module
// Courtesy of underscorejs.org
var
_
=
(
function
(
_
)
{
...
...
@@ -114,6 +116,7 @@
if
(
location
.
hostname
===
'
todomvc.com
'
)
{
window
.
_gaq
=
[[
'
_setAccount
'
,
'
UA-31081062-1
'
],[
'
_trackPageview
'
]];(
function
(
d
,
t
){
var
g
=
d
.
createElement
(
t
),
s
=
d
.
getElementsByTagName
(
t
)[
0
];
g
.
src
=
'
//www.google-analytics.com/ga.js
'
;
s
.
parentNode
.
insertBefore
(
g
,
s
)}(
document
,
'
script
'
));
}
/* jshint ignore:end */
function
redirect
()
{
if
(
location
.
hostname
===
'
tastejs.github.io
'
)
{
...
...
@@ -175,13 +178,17 @@
if
(
learnJSON
.
backend
)
{
this
.
frameworkJSON
=
learnJSON
.
backend
;
this
.
frameworkJSON
.
issueLabel
=
framework
;
this
.
append
({
backend
:
true
});
}
else
if
(
learnJSON
[
framework
])
{
this
.
frameworkJSON
=
learnJSON
[
framework
];
this
.
frameworkJSON
.
issueLabel
=
framework
;
this
.
append
();
}
this
.
fetchIssueCount
();
}
Learn
.
prototype
.
append
=
function
(
opts
)
{
...
...
@@ -212,6 +219,26 @@
document
.
body
.
insertAdjacentHTML
(
'
afterBegin
'
,
aside
.
outerHTML
);
};
Learn
.
prototype
.
fetchIssueCount
=
function
()
{
var
issueLink
=
document
.
getElementById
(
'
issue-count-link
'
);
if
(
issueLink
)
{
var
url
=
issueLink
.
href
.
replace
(
'
https://github.com
'
,
'
https://api.github.com/repos
'
);
var
xhr
=
new
XMLHttpRequest
();
xhr
.
open
(
'
GET
'
,
url
,
true
);
xhr
.
onload
=
function
(
e
)
{
var
parsedResponse
=
JSON
.
parse
(
e
.
target
.
responseText
);
if
(
parsedResponse
instanceof
Array
)
{
var
count
=
parsedResponse
.
length
if
(
count
!==
0
)
{
issueLink
.
innerHTML
=
'
This app has
'
+
count
+
'
open issues
'
;
document
.
getElementById
(
'
issue-count
'
).
style
.
display
=
'
inline
'
;
}
}
};
xhr
.
send
();
}
};
redirect
();
getFile
(
'
learn.json
'
,
Learn
);
})();
examples/angularjs-perf/
bower
.json
→
examples/angularjs-perf/
package
.json
View file @
3ff63ae4
{
"name"
:
"todomvc-angular-perf"
,
"version"
:
"0.0.0"
,
"private"
:
true
,
"dependencies"
:
{
"angular"
:
"1.3.8"
,
"todomvc-common"
:
"~0.3.0"
"todomvc-common"
:
"^1.0.1"
,
"todomvc-app-css"
:
"^1.0.1"
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment