forked from handsontable/handsontable
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
28 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
/*! | ||
* Handsontable 0.15.0-beta5 | ||
* Handsontable 0.15.0-beta6 | ||
* Handsontable is a JavaScript library for editable tables with basic copy-paste compatibility with Excel and Google Docs | ||
* | ||
* Copyright 2015 Handsoncode sp. z o.o. <[email protected]> | ||
* Licensed under the MIT license. | ||
* http://handsontable.com/ | ||
* | ||
* Date: Wed Jun 03 2015 14:13:30 GMT+0200 (CEST) | ||
* Date: Fri Jun 05 2015 09:18:04 GMT+0200 (CEST) | ||
*/ | ||
|
||
.handsontable { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
/*! | ||
* Handsontable 0.15.0-beta5 | ||
* Handsontable 0.15.0-beta6 | ||
* Handsontable is a JavaScript library for editable tables with basic copy-paste compatibility with Excel and Google Docs | ||
* | ||
* Copyright 2015 Handsoncode sp. z o.o. <[email protected]> | ||
* Licensed under the MIT license. | ||
* http://handsontable.com/ | ||
* | ||
* Date: Wed Jun 03 2015 14:13:30 GMT+0200 (CEST) | ||
* Date: Fri Jun 05 2015 09:18:04 GMT+0200 (CEST) | ||
*/ | ||
|
||
.handsontable { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
/*! | ||
* Handsontable 0.15.0-beta5 | ||
* Handsontable 0.15.0-beta6 | ||
* Handsontable is a JavaScript library for editable tables with basic copy-paste compatibility with Excel and Google Docs | ||
* | ||
* Copyright (c) 2012-2014 Marcin Warpechowski | ||
* Copyright 2015 Handsoncode sp. z o.o. <[email protected]> | ||
* Licensed under the MIT license. | ||
* http://handsontable.com/ | ||
* | ||
* Date: Wed Jun 03 2015 14:13:30 GMT+0200 (CEST) | ||
* Date: Fri Jun 05 2015 09:18:04 GMT+0200 (CEST) | ||
*/ | ||
/*jslint white: true, browser: true, plusplus: true, indent: 4, maxerr: 50 */ | ||
|
||
window.Handsontable = { | ||
version: '0.15.0-beta5', | ||
buildDate: 'Wed Jun 03 2015 14:13:30 GMT+0200 (CEST)' | ||
version: '0.15.0-beta6', | ||
buildDate: 'Fri Jun 05 2015 09:18:04 GMT+0200 (CEST)' | ||
}; | ||
require=(function outer (modules, cache, entry) { | ||
// Save the require from previous bundle to this closure if any | ||
var previousRequire = typeof require == "function" && require; | ||
var globalNS = JSON.parse('{"zeroclipboard":"ZeroClipboard","copyPaste":"copyPaste","SheetClip":"SheetClip","jsonpatch":"jsonpatch","moment":"moment","numeral":"numeral","autoResize":"autoResize","pikaday":"Pikaday"}') || {}; | ||
var globalNS = JSON.parse('{"jsonpatch":"jsonpatch","zeroclipboard":"ZeroClipboard","copyPaste":"copyPaste","SheetClip":"SheetClip","moment":"moment","numeral":"numeral","autoResize":"autoResize","pikaday":"Pikaday"}') || {}; | ||
|
||
function newRequire(name, jumped){ | ||
if(!cache[name]) { | ||
|
@@ -17410,11 +17410,11 @@ CopyPasteClass.prototype.onKeyDown = function(event) { | |
}, 0); | ||
} | ||
if (isCtrlDown && (event.keyCode === 67 || event.keyCode === 86 || event.keyCode === 88)) { | ||
if (event.keyCode === helper.keyCode.X) { | ||
if (event.keyCode === 88) { | ||
setTimeout(function() { | ||
_this.triggerCut(event); | ||
}, 0); | ||
} else if (event.keyCode === helper.keyCode.V) { | ||
} else if (event.keyCode === 86) { | ||
setTimeout(function() { | ||
_this.triggerPaste(event); | ||
}, 0); | ||
|
@@ -25180,4 +25180,4 @@ if (typeof exports !== "undefined") { | |
})(function() { | ||
return this || window; | ||
}()); | ||
},{}]},{},[23,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,86,87,88,72,73,74,75,76,77,31,35,40,32,33,34,36,37,38,39]); | ||
},{}]},{},[23,47,48,49,65,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,67,68,69,86,87,88,72,73,74,75,76,77,31,35,40,32,33,34,36,37,38,39]); |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
/*! | ||
* Handsontable 0.15.0-beta5 | ||
* Handsontable 0.15.0-beta6 | ||
* Handsontable is a JavaScript library for editable tables with basic copy-paste compatibility with Excel and Google Docs | ||
* | ||
* Copyright (c) 2012-2014 Marcin Warpechowski | ||
* Copyright 2015 Handsoncode sp. z o.o. <[email protected]> | ||
* Licensed under the MIT license. | ||
* http://handsontable.com/ | ||
* | ||
* Date: Wed Jun 03 2015 14:13:30 GMT+0200 (CEST) | ||
* Date: Fri Jun 05 2015 09:18:04 GMT+0200 (CEST) | ||
*/ | ||
/*jslint white: true, browser: true, plusplus: true, indent: 4, maxerr: 50 */ | ||
|
||
window.Handsontable = { | ||
version: '0.15.0-beta5', | ||
buildDate: 'Wed Jun 03 2015 14:13:30 GMT+0200 (CEST)' | ||
version: '0.15.0-beta6', | ||
buildDate: 'Fri Jun 05 2015 09:18:04 GMT+0200 (CEST)' | ||
}; | ||
require=(function outer (modules, cache, entry) { | ||
// Save the require from previous bundle to this closure if any | ||
var previousRequire = typeof require == "function" && require; | ||
var globalNS = JSON.parse('{"zeroclipboard":"ZeroClipboard","copyPaste":"copyPaste","SheetClip":"SheetClip","jsonpatch":"jsonpatch","moment":"moment","numeral":"numeral","autoResize":"autoResize","pikaday":"Pikaday"}') || {}; | ||
var globalNS = JSON.parse('{"jsonpatch":"jsonpatch","zeroclipboard":"ZeroClipboard","copyPaste":"copyPaste","SheetClip":"SheetClip","moment":"moment","numeral":"numeral","autoResize":"autoResize","pikaday":"Pikaday"}') || {}; | ||
|
||
function newRequire(name, jumped){ | ||
if(!cache[name]) { | ||
|
@@ -17603,4 +17603,4 @@ Handsontable.NumericValidator = function(value, callback) { | |
|
||
|
||
//# | ||
},{}]},{},[23,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,86,87,88,72,73,74,75,76,77,31,35,40,32,33,34,36,37,38,39]); | ||
},{}]},{},[23,47,48,49,65,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,66,67,68,69,86,87,88,72,73,74,75,76,77,31,35,40,32,33,34,36,37,38,39]); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "handsontable", | ||
"title": "Handsontable", | ||
"version": "0.15.0-beta5", | ||
"version": "0.15.0-beta6", | ||
"author": { | ||
"name": "Marcin Warpechowski", | ||
"email": "[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
"url": "https://github.com/handsontable/handsontable/issues" | ||
}, | ||
"author": "Handsoncode <[email protected]>", | ||
"version": "0.15.0-beta5", | ||
"version": "0.15.0-beta6", | ||
"keywords": [ | ||
"data", | ||
"grid", | ||
|