Skip to content

Commit

Permalink
Merge pull request #88 from adobe-webplatform/fix-version-deprecation…
Browse files Browse the repository at this point in the history
…-warning

Fix version deprecation warning
  • Loading branch information
redmunds authored Jul 5, 2016
2 parents b9dd45e + c9a2975 commit 66d571b
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ differing from that of Balance Text itself. You can find the libraries and their
respective licenses below.


- jQuery - /sample/jquery-1.8.0.js
- jQuery - /sample/jquery-1.9.1.js

Copyright 2011, John Resig
Dual licensed under the MIT or GPL Version 2 licenses.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Here is a simple Balance Text setup:
}
</style>
<script src="jquery-1.8.0.min.js"></script>
<script src="jquery-1.9.1.min.js"></script>
<script src="jquery.balancetext.min.js"></script>
```

Expand Down Expand Up @@ -53,7 +53,7 @@ If you need to manually re-balance all triggered elements, use:
[//cdn.jsdelivr.net/jquery.balancetext/1.6.0/jquery.balancetext.min.js](//cdn.jsdelivr.net/jquery.balancetext/1.6.0/jquery.balancetext.min.js)

## Requirements
BalanceText is designed to run in most common browsers and implemented as a jQuery plugin. This means that the standard jQuery library is required for it to work. This plugin was last updated using jQuery 1.8, but it should work with all newer (and some older) versions of jQuery.
BalanceText is designed to run in most common browsers and implemented as a jQuery plugin. This means that the standard jQuery library is required for it to work. This plugin was last updated using jQuery 1.9.1, but it should work with all newer (and some older) versions of jQuery.

jQuery was used so that the code would be easier to write to work in most common browsers. None of the novel ideas introduced by this code require jQuery.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
}
],
"dependencies": {
"jquery": "~1.8.0"
"jquery": "1.9.1 - 3"
},
"autoupdate": {
"source": "git",
Expand Down
2 changes: 1 addition & 1 deletion sample/demo-balance-text.htm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8">
<title>Balance Text Demo</title>
<script src="http://use.edgefonts.net/source-sans-pro:n3,n4,i3,i4,n6.js"></script>
<script src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="../jquery.balancetext.min.js"></script>
<link rel="stylesheet" type="text/css" href="main.css">
<!--[if lt IE 9]>
Expand Down
2 changes: 1 addition & 1 deletion test/test1.htm
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta charset="utf-8">
<title>Balance Text - Test 1</title>
<script src="http://use.edgefonts.net/source-sans-pro:n3,n4,i3,i4,n6.js"></script>
<script src="http://code.jquery.com/jquery-1.8.0.min.js"></script>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="../jquery.balancetext.js"></script>
<link rel="stylesheet" type="text/css" href="test1.css">
<!--[if lt IE 9]>
Expand Down

0 comments on commit 66d571b

Please sign in to comment.