Skip to content
This repository has been archived by the owner on Sep 14, 2021. It is now read-only.

Commit

Permalink
Use bower for jquery and qunit dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
joelpurra committed Nov 21, 2013
1 parent b3c772a commit 56ee9dd
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
bower_components/
8 changes: 8 additions & 0 deletions bower.json
@@ -0,0 +1,8 @@
{
"name": "emulatetab",
"version": "0.2.1",
"dependencies": {
"jquery": "^1.7.0",
"qunit": "^1.3.0"
}
}
6 changes: 3 additions & 3 deletions test/index.html
Expand Up @@ -2,10 +2,10 @@
<html>
<head>
<title>EmulateTab Test Suite</title>
<link rel="stylesheet" href="qunit/qunit/qunit.css" type="text/css" media="screen" />
<script type="text/javascript" src="qunit/qunit/qunit.js"></script>
<link rel="stylesheet" href="../bower_components/qunit/qunit/qunit.css" type="text/css" media="screen" />
<script type="text/javascript" src="../bower_components/qunit/qunit/qunit.js"></script>
<!-- Dependencies -->
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript" src="../bower_components/jquery/jquery.js"></script>
<!-- Script under test, actual code -->
<script type="text/javascript" src="../src/emulatetab.joelpurra.js"></script>
<!-- Test code -->
Expand Down

0 comments on commit 56ee9dd

Please sign in to comment.