Skip to content

Commit

Permalink
preparing to publish 2.7.26
Browse files Browse the repository at this point in the history
  • Loading branch information
maxkfranz committed Nov 17, 2017
1 parent edc7c89 commit 0722a22
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions dist/cytoscape.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

/*!

Cytoscape.js 2.7.25 (MIT licensed)
Cytoscape.js 2.7.26 (MIT licensed)

Copyright (c) The Cytoscape Consortium

Expand Down Expand Up @@ -8504,9 +8504,9 @@ var define = {

// event function reusable stuff
event: {
regex: /(\w+)(\.(?:\w+|\*))?/, // regex for matching event strings (e.g. "click.namespace")
regex: /([^.]+)(\.(?:[^.]+|\*))?/, // regex for matching event strings (e.g. "click.namespace")
universalNamespace: '.*', // matches as if no namespace specified and prevents users from unbinding accidentally
optionalTypeRegex: /(\w+)?(\.(?:\w+|\*))?/,
optionalTypeRegex: /([^.]+)?(\.(?:[^.]+|\*))?/,
falseCallback: function(){ return false; }
},

Expand Down Expand Up @@ -27428,7 +27428,7 @@ util.debounce = function( func, wait, options ){ // ported lodash debounce funct
module.exports = util;

},{"../is":83,"../window":107}],106:[function(_dereq_,module,exports){
module.exports = "2.7.25";
module.exports = "2.7.26";

},{}],107:[function(_dereq_,module,exports){
module.exports = ( typeof window === 'undefined' ? null : window ); // eslint-disable-line no-undef
Expand Down
6 changes: 3 additions & 3 deletions dist/cytoscape.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/thread-node-fork.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

/*!
Cytoscape.js 2.7.25 (MIT licensed)
Cytoscape.js 2.7.26 (MIT licensed)
Copyright (c) The Cytoscape Consortium
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cytoscape",
"version": "2.7.25",
"version": "2.7.26",
"license": "MIT",
"description": "Graph theory (a.k.a. network) library for analysis and visualisation",
"homepage": "http://js.cytoscape.org",
Expand Down
2 changes: 1 addition & 1 deletion src/version.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = "2.7.25";
module.exports = "2.7.26";

0 comments on commit 0722a22

Please sign in to comment.