Skip to content

Commit

Permalink
1.9.0 - Removal of JQuery Cookie
Browse files Browse the repository at this point in the history
  • Loading branch information
GedMarc committed Jan 16, 2021
1 parent 4b60746 commit 21223d9
Show file tree
Hide file tree
Showing 7 changed files with 20 additions and 15 deletions.
13 changes: 8 additions & 5 deletions demos/js/jquery.layout_and_plugins.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/**
* @preserve
* jquery.layout 1.8.4
* $Date: 2019-06-18 $
* $Rev: 1.8.2 $
* jquery.layout 1.8.5
* $Date: 2020-08-22 $
* $Rev: 1.8.5 $
*
* Copyright (c) 2014 Kevin Dalman (http://jquery-dev.com)
* Based on work by Fabrizio Balliano (http://www.fabrizioballiano.net)
Expand Down Expand Up @@ -791,6 +791,7 @@
, autoResize: true // IF size is 'auto' or a percentage, then recalc 'pixel size' whenever the layout resizes
, autoReopen: true // IF a pane was auto-closed due to noRoom, reopen it when there is room? False = leave it closed
, resizerDragOpacity: 1 // option for ui.draggable
, draggableIframeFix: false //use the jquery ui 1.11.1 ifame fix for draggable elements
//, resizerCursor: "" // MUST be pane-specific - cursor when over resizer-bar
, maskContents: false // true = add DIV-mask over-or-inside this pane so can 'drag' over IFRAMES
, maskObjects: false // true = add IFRAME-mask over-or-inside this pane to cover objects/applets - content-mask will overlay this mask
Expand Down Expand Up @@ -2786,7 +2787,7 @@
, helper: "clone"
, opacity: o.resizerDragOpacity
, addClasses: false // avoid ui-state-disabled class when disabled
//, iframeFix: o.draggableIframeFix // TODO: consider using when bug is fixed
, iframeFix: o.draggableIframeFix
, zIndex: z.resizer_drag

, start: function (e, ui) {
Expand Down Expand Up @@ -5432,7 +5433,7 @@
* http://www.gnu.org/licenses/gpl.html
*
*/
jQuery.cookie = function (name, value, options) {
/*jQuery.cookie = function (name, value, options) {
if (typeof value != 'undefined') { // name and value given, set cookie
options = options || {};
if (value === null) {
Expand Down Expand Up @@ -5474,6 +5475,8 @@
return cookieValue;
}
};
*/



/**
Expand Down
2 changes: 1 addition & 1 deletion demos/js/jquery.layout_and_plugins.min.js

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions dist/jquery.layout_and_plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -913,12 +913,12 @@
// layout/global options - NOT pane-options
layout: ("name,instanceKey,stateManagement,effects,inset,zIndexes,errors,"
+ "zIndex,scrollToBookmarkOnLoad,showErrorMessages,maskPanesEarly,"
+ "outset,resizeWithWindow,resizeWithWindowDelay,resizeWithWindowMaxDelay,iframeFix,"
+ "outset,resizeWithWindow,resizeWithWindowDelay,resizeWithWindowMaxDelay,"
+ "onresizeall,onresizeall_start,onresizeall_end,onload,onload_start,onload_end,onunload,onunload_start,onunload_end").split(",")
// borderPanes: [ ALL options that are NOT specified as 'layout' ]
// default.panes options that apply to the center-pane (most options apply _only_ to border-panes)
, center: ("paneClass,contentSelector,contentIgnoreSelector,findNestedContent,applyDemoStyles,triggerEventsOnLoad,"
+ "showOverflowOnHover,maskContents,maskObjects,liveContentResizing,iframeFix,"
+ "showOverflowOnHover,maskContents,maskObjects,liveContentResizing,"
+ "containerSelector,children,initChildren,resizeChildren,destroyChildren,"
+ "onresize,onresize_start,onresize_end,onsizecontent,onsizecontent_start,onsizecontent_end").split(",")
// options that MUST be specifically set 'per-pane' - CANNOT set in the panes (defaults) key
Expand Down Expand Up @@ -5433,7 +5433,7 @@
* http://www.gnu.org/licenses/gpl.html
*
*/
jQuery.cookie = function (name, value, options) {
/*jQuery.cookie = function (name, value, options) {
if (typeof value != 'undefined') { // name and value given, set cookie
options = options || {};
if (value === null) {
Expand Down Expand Up @@ -5475,6 +5475,8 @@
return cookieValue;
}
};
*/



/**
Expand Down
2 changes: 1 addition & 1 deletion dist/jquery.layout_and_plugins.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"name": "layout-jquery3",
"title": "UI Layout",
"description": "Create advanced UI layouts with sizable, collapsible, nested panels and tons of options. Layout can create any UI look you want; from simple headers or sidebars to a complex application with toolbars, menus, help-panels, status bars, sub-forms, etc. Integrates with and enhances other UI widgets, like tabs, accordions and dialogs, to create rich interfaces.",
"version": "1.8.4",
"main": "dist/jquery.layout_and_plugins.js",
"version": "1.8.5",
"main": "dist/jquery.layout_and_plugins.min.js",
"keywords": [
"ui",
"layout"
Expand Down
4 changes: 2 additions & 2 deletions source/stable/jquery.layout_and_plugins.js
Original file line number Diff line number Diff line change
Expand Up @@ -5433,7 +5433,7 @@
* http://www.gnu.org/licenses/gpl.html
*
*/
jQuery.cookie = function (name, value, options) {
/*jQuery.cookie = function (name, value, options) {
if (typeof value != 'undefined') { // name and value given, set cookie
options = options || {};
if (value === null) {
Expand Down Expand Up @@ -5475,7 +5475,7 @@
return cookieValue;
}
};

*/

/**
* @preserve jquery.layout.state 1.0
Expand Down
2 changes: 1 addition & 1 deletion source/stable/jquery.layout_and_plugins.min.js

Large diffs are not rendered by default.

0 comments on commit 21223d9

Please sign in to comment.