Skip to content
This repository was archived by the owner on Jun 28, 2019. It is now read-only.

Commit cb1da50

Browse files
author
Fosco Marotto
committed
Updated to Parse SDK 1.2.13 and changed script includes to work locally
1 parent 52ac59c commit cb1da50

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
<meta charset="utf-8">
55
<title>Parse JavaScript Todo App</title>
66
<link href="css/todos.css" media="all" rel="stylesheet" type="text/css"/>
7-
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
7+
<script src="http://code.jquery.com/jquery-2.0.3.min.js"></script>
88
<script src="js/underscore-1.1.6.js"></script>
9-
<script src="//www.parsecdn.com/js/parse-1.1.15.min.js"></script>
9+
<script src="http://www.parsecdn.com/js/parse-1.2.13.min.js"></script>
1010
<script src="js/todos.js"></script>
1111
</head>
1212

js/todos.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ $(function() {
77
Parse.$ = jQuery;
88

99
// Initialize Parse with your Parse application javascript keys
10-
Parse.initialize("0Oq3tTp9JMvd72LOrGN25PiEq9XgVHCxo57MQbpT",
11-
"vUFy2o7nFx3eeKVlZneYMPI2MBoxT5LhWNoIWPja");
10+
Parse.initialize("your-application-id",
11+
"your-javascript-key");
1212

1313
// Todo Model
1414
// ----------

0 commit comments

Comments
 (0)