Skip to content

Commit 857d9e4

Browse files
committed
Merge branch 'gh-pages' of github.com:bitovi/jquerypp into gh-pages
2 parents 9209716 + a077820 commit 857d9e4

File tree

763 files changed

+109183
-320
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

763 files changed

+109183
-320
lines changed

_layouts/default.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<div id='header'>
1919
<div id='logo-and-download'>
2020
<img alt="jQuery++" id="logo" src="images/logo.png"/>
21-
<a class='primary' href='https://github.com/downloads/bitovi/jquerypp/jquerypp-{{page.version}}.zip'>Download {{page.version}}</a>
21+
<a class='primary' href='http://jquerypp.com/downloads/jquerypp-{{page.version}}.zip'>Download {{page.version}}</a>
2222
</div>
2323
</div>
2424
<div class='cf' id='buttons'>
@@ -46,4 +46,4 @@
4646
<script src="javascripts/jquerypp.js" type="text/javascript"></script>
4747
<script src="javascripts/application.js" type="text/javascript"></script>
4848
</body>
49-
</html>
49+
</html>

downloads/jquerypp-1.0.1.zip

679 KB
Binary file not shown.

downloads/jquerypp.1.0.1.zip

493 KB
Binary file not shown.

downloads/tmp.txt

Whitespace-only changes.

index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
layout: default
3-
version: 1.0.0
3+
version: 1.0.1
44
---
55

66
# Hi, I'm jQuery++.
@@ -46,7 +46,7 @@ after jQuery 1.8 like:
4646
4747
The files needed for using jQuery++ with [StealJS](http://javascriptmvc.com/docs.html#!stealjs) are
4848
located in the `steal/` folder of
49-
the [full download](https://github.com/downloads/bitovi/jquerypp/jquerypp-{{page.version}}.zip).
49+
the [full download](http://jquerypp.com/downloads/jquerypp-{{page.version}}.zip).
5050
Take the `jquery/` folder and put it in your steal root to load a plugin like this:
5151
5252
{% highlight javascript %}
@@ -887,4 +887,4 @@ __1.0 Beta 2__
887887

888888
__1.0 Beta__ (June 1st 2012)
889889

890-
- Released!
890+
- Released!

release/latest/amd/jquerypp/dom/animate.js renamed to release/1.0.1/amd/jquerypp/dom/animate.js.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/*
2-
* jQuery++ - 1.0.0 (2012-11-23)
1+
/*!
2+
* jQuery++ - 1.0.1 (2013-02-07)
33
* http://jquerypp.com
4-
* Copyright (c) 2012 Bitovi
4+
* Copyright (c) 2013 Bitovi
55
* Licensed MIT
66
*/
77
define(['jquery', 'jquerypp/dom/styles'], function ($) {
@@ -202,7 +202,7 @@ define(['jquery', 'jquerypp/dom/styles'], function ($) {
202202
return oldanimate.apply(this, arguments);
203203
}
204204

205-
var optall = jQuery.speed(speed, easing, callback);
205+
var optall = $.speed(speed, easing, callback);
206206

207207
// Add everything to the animation queue
208208
this.queue(optall.queue, function (done) {

release/latest/amd/jquerypp/dom/compare.js renamed to release/1.0.1/amd/jquerypp/dom/compare.js.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
/*
2-
* jQuery++ - 1.0.0 (2012-11-23)
1+
/*!
2+
* jQuery++ - 1.0.1 (2013-02-07)
33
* http://jquerypp.com
4-
* Copyright (c) 2012 Bitovi
4+
* Copyright (c) 2013 Bitovi
55
* Licensed MIT
66
*/
77
define(['jquery'], function ($) {
88

99
// See http://ejohn.org/blog/comparing-document-position/
10-
jQuery.fn.compare = function (element) { //usually
10+
$.fn.compare = function (element) { //usually
1111
try {
1212
// Firefox 3 throws an error with XUL - we can't use compare then
1313
element = element.jquery ? element[0] : element;

release/latest/amd/jquerypp/dom/cookie.js renamed to release/1.0.1/amd/jquerypp/dom/cookie.js.js

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
/*
2-
* jQuery++ - 1.0.0 (2012-11-23)
1+
/*!
2+
* jQuery++ - 1.0.1 (2013-02-07)
33
* http://jquerypp.com
4-
* Copyright (c) 2012 Bitovi
4+
* Copyright (c) 2013 Bitovi
55
* Licensed MIT
66
*/
77
define(['jquery', 'jquerypp/lang/json'], function ($) {
88

9-
jQuery.cookie = function (name, value, options) {
9+
$.cookie = function (name, value, options) {
1010
if (typeof value != 'undefined') {
1111
// name and value given, set cookie
1212
options = options || {};
@@ -15,8 +15,8 @@ define(['jquery', 'jquerypp/lang/json'], function ($) {
1515
options.expires = -1;
1616
}
1717
// convert value to JSON string
18-
if (typeof value == 'object' && jQuery.toJSON) {
19-
value = jQuery.toJSON(value);
18+
if (typeof value == 'object' && $.toJSON) {
19+
value = $.toJSON(value);
2020
}
2121
var expires = '';
2222
// Set expiry
@@ -45,7 +45,7 @@ define(['jquery', 'jquerypp/lang/json'], function ($) {
4545
if (document.cookie && document.cookie != '') {
4646
var cookies = document.cookie.split(';');
4747
for (var i = 0; i < cookies.length; i++) {
48-
var cookie = jQuery.trim(cookies[i]);
48+
var cookie = $.trim(cookies[i]);
4949
// Does this cookie string begin with the name we want?
5050
if (cookie.substring(0, name.length + 1) == (name + '=')) {
5151
// Get the cookie value
@@ -55,9 +55,9 @@ define(['jquery', 'jquerypp/lang/json'], function ($) {
5555
}
5656
}
5757
// Parse JSON from the cookie into an object
58-
if (jQuery.evalJSON && cookieValue && cookieValue.match(/^\s*\{/)) {
58+
if ($.evalJSON && cookieValue && cookieValue.match(/^\s*\{/)) {
5959
try {
60-
cookieValue = jQuery.evalJSON(cookieValue);
60+
cookieValue = $.evalJSON(cookieValue);
6161
}
6262
catch (e) {}
6363
}

release/latest/amd/jquerypp/dom/dimensions.js renamed to release/1.0.1/amd/jquerypp/dom/dimensions.js.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/*
2-
* jQuery++ - 1.0.0 (2012-11-23)
1+
/*!
2+
* jQuery++ - 1.0.1 (2013-02-07)
33
* http://jquerypp.com
4-
* Copyright (c) 2012 Bitovi
4+
* Copyright (c) 2013 Bitovi
55
* Licensed MIT
66
*/
77
define(['jquery', 'jquerypp/dom/styles'], function ($) {

release/latest/amd/jquerypp/dom/form_params.js renamed to release/1.0.1/amd/jquerypp/dom/form_params.js.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/*
2-
* jQuery++ - 1.0.0 (2012-11-23)
1+
/*!
2+
* jQuery++ - 1.0.1 (2013-02-07)
33
* http://jquerypp.com
4-
* Copyright (c) 2012 Bitovi
4+
* Copyright (c) 2013 Bitovi
55
* Licensed MIT
66
*/
77
define(['jquery'], function ($) {

0 commit comments

Comments
 (0)