Skip to content

Commit

Permalink
Prepare for 0.9.10
Browse files Browse the repository at this point in the history
  • Loading branch information
tuupola committed Feb 27, 2014
1 parent 49088a3 commit edd3742
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 16 deletions.
2 changes: 1 addition & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module.exports = function(grunt) {
uglify : {
options: {
report: "gzip",
banner: "/*! Chained <%= pkg.version %> - MIT license - Copyright 2010-2013 Mika Tuupola */\n"
banner: "/*! Chained <%= pkg.version %> - MIT license - Copyright 2010-2014 Mika Tuupola */\n"
},
target: {
files: {
Expand Down
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chained",
"version": "0.9.9",
"version": "0.9.10",
"homepage": "http://www.appelsiini.net/projects/chained",
"authors": [
"Mika Tuupola <[email protected]>"
Expand Down
2 changes: 1 addition & 1 deletion chained.jquery.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chained",
"version": "0.9.9",
"version": "0.9.10",
"title": "Chained",
"author": {
"name": "Mika Tuupola",
Expand Down
23 changes: 19 additions & 4 deletions demo.html
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ <h3>Multiple jquery.chained.js</h3>
<div class="entry">
<h3>jquery.chained.remote.js</h3>
<form>
<select id="mark-remote" name="mark">
<select id="mark-remote" data-variable="bar" name="mark">
<option value="">--</option>
<option value="bmw">BMW</option>
<option value="audi">Audi</option>
Expand Down Expand Up @@ -438,9 +438,24 @@ <h3>Multiple jquery.chained.remote.js</h3>
$("#c").chained("#a,#b");

/* For jquery.chained.remote.js */
$("#series-remote").remoteChained("#mark-remote", "json.php");
$("#model-remote").remoteChained("#series-remote", "json.php");
$("#engine-remote").remoteChained("#series-remote, #model-remote", "json.php");
$("#series-remote").remoteChained({
parents : "#mark-remote",
url : "json.php?sleep=1",
loading : "-x-",
clear : true
});
$("#model-remote").remoteChained({
parents : "#series-remote",
url : "json.php?sleep=1",
loading : "-x-",
clear : true
});
$("#engine-remote").remoteChained({
parents : "#series-remote, #model-remote",
url : "json.php?sleep=1",
loading : "-x-",
clear : true
});

/* Show button after each pulldown has a value. */
$("#engine-remote").bind("change", function(event) {
Expand Down
4 changes: 2 additions & 2 deletions jquery.chained.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/*
* Chained - jQuery / Zepto chained selects plugin
*
* Copyright (c) 2010-2013 Mika Tuupola
* Copyright (c) 2010-2014 Mika Tuupola
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Project home:
* http://www.appelsiini.net/projects/chained
*
* Version: 0.9.10-dev
* Version: 0.9.10
*
*/

Expand Down
4 changes: 2 additions & 2 deletions jquery.chained.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions jquery.chained.remote.js
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
/*
* Chained - jQuery / Zepto chained selects plugin
*
* Copyright (c) 2010-2013 Mika Tuupola
* Copyright (c) 2010-2014 Mika Tuupola
*
* Licensed under the MIT license:
* http://www.opensource.org/licenses/mit-license.php
*
* Project home:
* http://www.appelsiini.net/projects/chained
*
* Version: 0.9.10-dev
* Version: 0.9.10
*
*/

Expand Down
4 changes: 2 additions & 2 deletions jquery.chained.remote.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chained",
"version": "0.9.9",
"version": "0.9.10",
"engines": {
"node": ">= 0.8.0"
},
Expand Down

0 comments on commit edd3742

Please sign in to comment.