Skip to content

Commit 6007d44

Browse files
committed
update submodules
1 parent ed8258a commit 6007d44

72 files changed

Lines changed: 3691 additions & 683 deletions

File tree

Some content is hidden

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

dist/assets/lib/autosize/autosize.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "autosize",
33
"title": "Autosize",
44
"description": "Automatically adjust textarea height based on user input.",
5-
"version": "1.17.8",
5+
"version": "1.18.0",
66
"dependencies": {
77
"jquery": ">=1.7"
88
},

dist/assets/lib/autosize/bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jquery-autosize",
33
"description": "Automatically adjust textarea height based on user input.",
4-
"version": "1.17.8",
4+
"version": "1.18.0",
55
"dependencies": {
66
"jquery": ">=1.7"
77
},

dist/assets/lib/autosize/jquery.autosize.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
Autosize v1.17.8 - 2013-09-07
2+
Autosize v1.18.0 - 2013-10-20
33
Automatically adjust textarea height based on user input.
44
(c) 2013 Jack Moore - http://www.jacklmoore.com/autosize
55
license: http://www.opensource.org/licenses/mit-license.php
@@ -103,7 +103,7 @@
103103
var style, width;
104104

105105
if ('getComputedStyle' in window) {
106-
style = window.getComputedStyle(ta);
106+
style = window.getComputedStyle(ta, null);
107107
width = ta.getBoundingClientRect().width;
108108

109109
$.each(['paddingLeft', 'paddingRight', 'borderLeftWidth', 'borderRightWidth'], function(i,val){

dist/assets/lib/autosize/jquery.autosize.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/assets/lib/autosize/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "jquery-autosize",
33
"description": "Automatically adjust textarea height based on user input.",
4-
"version": "1.17.8",
4+
"version": "1.18.0",
55
"dependencies": {},
66
"keywords": [
77
"form",

dist/assets/lib/autosize/readme.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ Small jQuery plugin to allow dynamic resizing of textarea height, so that it gro
44

55
## Changelog
66

7+
### v1.18.0 - 2013/10/20
8+
* Fixed error that was being thrown in FireFox 3.x. Fixes #112
9+
* Removed AMD support. Fixes #109 Ref #56.
10+
711
### v1.17.8 - 2013/9/7
812
* Minor change to not append the mirror element when the plugin is applied to an empty jQuery collection
913

dist/assets/lib/daterangepicker/daterangepicker.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,10 +347,15 @@
347347
if (start == null || end == null) return;
348348
if (end.isBefore(start)) return;
349349

350+
this.oldStartDate = this.startDate.clone();
351+
this.oldEndDate = this.endDate.clone();
352+
350353
this.startDate = start;
351354
this.endDate = end;
352355

353-
this.notify();
356+
if (!this.startDate.isSame(this.oldStartDate) || !this.endDate.isSame(this.oldEndDate))
357+
this.notify();
358+
354359
this.updateCalendars();
355360
},
356361

dist/assets/lib/flot/jquery.colorhelpers.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,15 @@
7474
// if it's "transparent"
7575
$.color.extract = function (elem, css) {
7676
var c;
77+
7778
do {
7879
c = elem.css(css).toLowerCase();
7980
// keep going until we find an element that has color, or
80-
// we hit the body
81+
// we hit the body or root (have no parent)
8182
if (c != '' && c != 'transparent')
8283
break;
8384
elem = elem.parent();
84-
} while (!$.nodeName(elem.get(0), "body"));
85+
} while (elem.length && !$.nodeName(elem.get(0), "body"));
8586

8687
// catch Safari's way of signalling transparent
8788
if (c == "rgba(0, 0, 0, 0)")

dist/assets/lib/form/bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "jquery-form",
3-
"version": "3.37.0",
3+
"version": "3.45.0",
44
"main": "jquery.form.js",
55
"author": "M. Alsup",
66
"dependencies": {

dist/assets/lib/form/form.jquery.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"upload",
88
"ajax"
99
],
10-
"version": "3.26.0-2013.01.28",
10+
"version": "3.45.0",
1111
"author": {
1212
"name": "M. Alsup",
1313
"url": "http://jquery.malsup.com"

0 commit comments

Comments
 (0)