From 212376a484f64d32cf49a6aaa4d5eee85aa7653a Mon Sep 17 00:00:00 2001 From: Michael Best Date: Mon, 16 Nov 2015 14:16:17 -1000 Subject: [PATCH] Version 3.4.0 for distribution --- dist/knockout.debug.js | 5871 ++++++++++++++++++++++++++++++++++++++++ dist/knockout.js | 123 + 2 files changed, 5994 insertions(+) create mode 100644 dist/knockout.debug.js create mode 100644 dist/knockout.js diff --git a/dist/knockout.debug.js b/dist/knockout.debug.js new file mode 100644 index 000000000..3bbeb22af --- /dev/null +++ b/dist/knockout.debug.js @@ -0,0 +1,5871 @@ +/*! + * Knockout JavaScript library v3.4.0 + * (c) Steven Sanderson - http://knockoutjs.com/ + * License: MIT (http://www.opensource.org/licenses/mit-license.php) + */ + +(function(){ +var DEBUG=true; +(function(undefined){ + // (0, eval)('this') is a robust way of getting a reference to the global object + // For details, see http://stackoverflow.com/questions/14119988/return-this-0-evalthis/14120023#14120023 + var window = this || (0, eval)('this'), + document = window['document'], + navigator = window['navigator'], + jQueryInstance = window["jQuery"], + JSON = window["JSON"]; +(function(factory) { + // Support three module loading scenarios + if (typeof define === 'function' && define['amd']) { + // [1] AMD anonymous module + define(['exports', 'require'], factory); + } else if (typeof exports === 'object' && typeof module === 'object') { + // [2] CommonJS/Node.js + factory(module['exports'] || exports); // module.exports is for Node.js + } else { + // [3] No module loader (plain