Skip to content

Commit

Permalink
remove jquery from app-async.js and add app-async.js to assets.
Browse files Browse the repository at this point in the history
  • Loading branch information
gabehopper committed Aug 28, 2014
1 parent 2e53d35 commit 7f9ee70
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions lib/assets.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@


"scripts": ["socket.io/socket.io.js"],
"trailingScripts":
["js/libs/underscore/underscore-1.4.4.js",
"trailingScripts": ["js/libs/underscore/underscore-1.4.4.js",
"js/libs/jquery/jquery-1.9.1.js",
"js/libs/backbone/backbone-1.0.0.js",
"js/app-async.js",
"js/app-utils.js",
"js/app-starter.js",
"js/app-store.js",
Expand All @@ -36,10 +36,9 @@
"content": "black"
}
],
"htmlFiles":
[
path.join(templates, "container.html")
],
"htmlFiles": [
path.join(templates, "container.html")
],
"links": [
{
"rel": "apple-touch-startup-image",
Expand Down
4 changes: 2 additions & 2 deletions public/js/app-async.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*global PhoneGap:false, require:false */
(function ($, _, app) {
(function (_, app) {
"use strict";
app.async = app.async || {};

Expand All @@ -18,4 +18,4 @@
});
};

})($, _, window["jolira-app"]);
})(_, window["jolira-app"]);

0 comments on commit 7f9ee70

Please sign in to comment.