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
6f5dad67
Commit
6f5dad67
authored
Jan 01, 2013
by
Peter Michaux
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
the TodoMVC folks don't want to warn users with JavaScript disabled
parent
cec047e7
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
10 deletions
+0
-10
labs/architecture-examples/maria/src/index.html
labs/architecture-examples/maria/src/index.html
+0
-7
labs/architecture-examples/maria/src/js/bootstrap.js
labs/architecture-examples/maria/src/js/bootstrap.js
+0
-3
No files found.
labs/architecture-examples/maria/src/index.html
View file @
6f5dad67
...
...
@@ -10,13 +10,6 @@
</head>
<body>
<noscript>
<p>
This application uses JavaScript. Please enable JavaScript in your browser and refresh the page.
</p>
</noscript>
<script>
document
.
write
(
'
<p id="loading">loading...</p>
'
);
</script>
<script
src=
"../lib/maria/maria.js"
></script>
<script
src=
"../lib/aristocrat/aristocrat.js"
></script>
<script
src=
"../../../../assets/director.min.js"
></script>
...
...
labs/architecture-examples/maria/src/js/bootstrap.js
View file @
6f5dad67
...
...
@@ -2,9 +2,6 @@
/*global maria, Router, checkit */
maria
.
on
(
window
,
'
load
'
,
function
()
{
var
loading
=
document
.
getElementById
(
'
loading
'
);
loading
.
parentNode
.
removeChild
(
loading
);
var
model
;
if
((
typeof
localStorage
===
'
object
'
)
&&
(
typeof
JSON
===
'
object
'
))
{
var
store
=
localStorage
.
getItem
(
'
todos-maria
'
);
...
...
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