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
f1398a18
Commit
f1398a18
authored
Sep 05, 2012
by
Addy Osmani
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #278 from seanparmelee/gh-pages
Update to Ext JS 4.1.1
parents
1b1c4db0
810da9aa
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
3 deletions
+4
-3
labs/architecture-examples/extjs/index.html
labs/architecture-examples/extjs/index.html
+1
-1
labs/architecture-examples/extjs/js/view/TaskList.js
labs/architecture-examples/extjs/js/view/TaskList.js
+2
-1
labs/architecture-examples/extjs/js/view/TaskToolbar.js
labs/architecture-examples/extjs/js/view/TaskToolbar.js
+1
-1
No files found.
labs/architecture-examples/extjs/index.html
View file @
f1398a18
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
Updates by
<a
href=
"http://github.com/boushley"
>
Aaron Boushley
</a>
Updates by
<a
href=
"http://github.com/boushley"
>
Aaron Boushley
</a>
</div>
</div>
<script
src=
"../../../assets/base.js"
></script>
<script
src=
"../../../assets/base.js"
></script>
<script
src=
"http://
extjs.cachefly.net/ext-4.0.2a
/bootstrap.js"
></script>
<script
src=
"http://
cdn.sencha.com/ext-4.1.1-gpl
/bootstrap.js"
></script>
<script
src=
"js/app.js"
></script>
<script
src=
"js/app.js"
></script>
</body>
</body>
</html>
</html>
labs/architecture-examples/extjs/js/view/TaskList.js
View file @
f1398a18
...
@@ -4,7 +4,8 @@ Ext.define('Todo.view.TaskList' , {
...
@@ -4,7 +4,8 @@ Ext.define('Todo.view.TaskList' , {
itemSelector
:
'
li
'
,
itemSelector
:
'
li
'
,
extend
:
'
Ext.view.View
'
,
extend
:
'
Ext.view.View
'
,
alias
:
'
widget.taskList
'
,
alias
:
'
widget.taskList
'
,
autoEl
:
'
<ul id="todo-list" />
'
,
autoEl
:
'
ul
'
,
id
:
'
todo-list
'
,
tpl
:
Ext
.
create
(
'
Ext.XTemplate
'
,
tpl
:
Ext
.
create
(
'
Ext.XTemplate
'
,
'
<tpl for=".">
'
,
'
<tpl for=".">
'
,
'
<li class="<tpl if="checked">done</tpl> <tpl if="editing">editing</tpl>">
'
,
'
<li class="<tpl if="checked">done</tpl> <tpl if="editing">editing</tpl>">
'
,
...
...
labs/architecture-examples/extjs/js/view/TaskToolbar.js
View file @
f1398a18
Ext
.
define
(
'
Todo.view.TaskToolbar
'
,
{
Ext
.
define
(
'
Todo.view.TaskToolbar
'
,
{
hidden
:
true
,
hidden
:
true
,
extend
:
'
Ext.
Toolba
r
'
,
extend
:
'
Ext.
Containe
r
'
,
alias
:
'
widget.taskToolbar
'
,
alias
:
'
widget.taskToolbar
'
,
autoEl
:
{
tag
:
'
footer
'
},
autoEl
:
{
tag
:
'
footer
'
},
requires
:
[
'
Todo.view.TaskCompleteButton
'
],
requires
:
[
'
Todo.view.TaskCompleteButton
'
],
...
...
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