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
Sven Franck
todomvc
Commits
5d273d99
Commit
5d273d99
authored
Aug 07, 2012
by
Sindre Sorhus
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Minor cleanup
parent
846dd50d
Changes
6
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
13 additions
and
13 deletions
+13
-13
architecture-examples/angularjs-perf/index.html
architecture-examples/angularjs-perf/index.html
+2
-2
architecture-examples/angularjs/index.html
architecture-examples/angularjs/index.html
+2
-2
architecture-examples/emberjs/js/app.js
architecture-examples/emberjs/js/app.js
+1
-1
architecture-examples/emberjs/js/views/application.js
architecture-examples/emberjs/js/views/application.js
+3
-3
architecture-examples/yui/js/views/todoview.js
architecture-examples/yui/js/views/todoview.js
+1
-1
dependency-examples/emberjs_require/js/app.js
dependency-examples/emberjs_require/js/app.js
+4
-4
No files found.
architecture-examples/angularjs-perf/index.html
View file @
5d273d99
architecture-examples/angularjs/index.html
View file @
5d273d99
architecture-examples/emberjs/js/app.js
View file @
5d273d99
...
...
@@ -2,7 +2,7 @@
'
use strict
'
;
win
.
Todos
=
Ember
.
Application
.
create
({
VERSION
:
'
0.2
'
,
VERSION
:
'
1.0
'
,
rootElement
:
'
#todoapp
'
,
storeNamespace
:
'
todos-emberjs
'
,
// Extend to inherit outlet support
...
...
architecture-examples/emberjs/js/views/application.js
View file @
5d273d99
...
...
@@ -60,13 +60,13 @@
templateName
:
'
filtersTemplate
'
,
filterBinding
:
'
controller.namespace.entriesController.filterBy
'
,
isAll
:
function
()
{
return
!!
Ember
.
empty
(
this
.
get
(
'
filter
'
)
);
return
Ember
.
empty
(
this
.
get
(
'
filter
'
)
);
}.
property
(
'
filter
'
),
isActive
:
function
()
{
return
!!
(
this
.
get
(
'
filter
'
)
===
'
active
'
)
;
return
this
.
get
(
'
filter
'
)
===
'
active
'
;
}.
property
(
'
filter
'
),
isCompleted
:
function
()
{
return
!!
(
this
.
get
(
'
filter
'
)
===
'
completed
'
)
;
return
this
.
get
(
'
filter
'
)
===
'
completed
'
;
}.
property
(
'
filter
'
)
}),
clearBtnView
:
Ember
.
View
.
create
({
...
...
architecture-examples/yui/js/views/todoview.js
View file @
5d273d99
dependency-examples/emberjs_require/js/app.js
View file @
5d273d99
...
...
@@ -22,16 +22,16 @@ define( 'app', [
'
ember
'
],
function
(
Router
,
Store
,
EntriesController
,
ApplicationView
)
{
var
App
=
Ember
.
Application
.
create
({
VERSION
:
'
0.2
'
,
VERSION
:
'
1.0
'
,
rootElement
:
'
#todoapp
'
,
// Load routes
Router
:
Router
,
// Extend to inherit outlet support
ApplicationController
:
Ember
.
Controller
.
extend
(),
ApplicationView
:
ApplicationView
,
entriesController
:
EntriesController
.
create
(
{
store
:
new
Store
(
'
todos-emberjs
'
)
}
),
entriesController
:
EntriesController
.
create
(
{
store
:
new
Store
(
'
todos-emberjs
'
)
}
),
ready
:
function
()
{
this
.
initialize
();
}
...
...
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