Skip to content

Commit 3db1203

Browse files
committed
Bump to 1.2.3
1 parent 020c133 commit 3db1203

35 files changed

+437
-437
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,15 @@ Now, the greeting updates as you type!
9191
* [API Docs](http://kmalakoff.github.com/knockback/doc/index.html) - dig into the API
9292
* [TodoMVC App (Live!)](http://kmalakoff.github.com/knockback-todos-app/) - compare client-side framworks
9393
94-
# Download Latest (1.2.2):
94+
# Download Latest (1.2.3):
9595
9696
Please see the [release notes](https://github.com/kmalakoff/knockback/blob/master/RELEASE_NOTES.md) for upgrade pointers.
9797
98-
* Full Library [(dev, 64k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.2/knockback.js) or [(min+gzip, 8k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.2/knockback.min.js)
99-
* Full Stack [(dev, 330k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.2/knockback-full-stack.js) or [(min+gzip, 32k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.2/knockback-full-stack.min.js)
98+
* Full Library [(dev, 64k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.3/knockback.js) or [(min+gzip, 8k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.3/knockback.min.js)
99+
* Full Stack [(dev, 330k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.3/knockback-full-stack.js) or [(min+gzip, 32k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.3/knockback-full-stack.min.js)
100100
101-
* Core Library [(dev, 54k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.2/knockback-core.js) or [(min+gzip, 7k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.2/knockback-core.min.js)
102-
* Core Stack [(dev, 315k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.2/knockback-core-stack.js) or [(min+gzip, 31k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.2/knockback-core-stack.min.js)
101+
* Core Library [(dev, 54k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.3/knockback-core.js) or [(min+gzip, 7k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.3/knockback-core.min.js)
102+
* Core Stack [(dev, 315k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.3/knockback-core-stack.js) or [(min+gzip, 31k)](https://raw.githubusercontent.com/kmalakoff/knockback/1.2.3/knockback-core-stack.min.js)
103103
104104
The **full versions** bundle advanced features.
105105

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "knockback",
3-
"version": "1.2.2",
3+
"version": "1.2.3",
44
"main": "knockback.js",
55
"ignore": [
66
"**/.*",

component.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "knockback",
33
"author": "Kevin Malakoff (https://github.com/kmalakoff)",
4-
"version": "1.2.2",
4+
"version": "1.2.3",
55
"description": "Knockback.js provides Knockout.js magic for Backbone.js Models and Collections",
66
"keywords" : ["knockback", "knockbackjs", "backbone", "backbonejs", "knockout", "knockoutjs"],
77
"repo": "kmalakoff/knockback",

knockback-core-stack.js

+44-44
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
knockback-core-stack.js 1.2.2
2+
knockback-core-stack.js 1.2.3
33
Copyright (c) 2011-2019 Kevin Malakoff.
44
License: MIT (http://www.opensource.org/licenses/mit-license.php)
55
Source: https://github.com/kmalakoff/knockback
@@ -365,27 +365,27 @@ kb.Events = Backbone.Events;
365365
/* 1 */
366366
/***/ (function(module, exports) {
367367

368-
var g;
369-
370-
// This works in non-strict mode
371-
g = (function() {
372-
return this;
373-
})();
374-
375-
try {
376-
// This works if eval is allowed (see CSP)
377-
g = g || Function("return this")() || (1,eval)("this");
378-
} catch(e) {
379-
// This works if the window reference is available
380-
if(typeof window === "object")
381-
g = window;
382-
}
383-
384-
// g can still be undefined, but nothing to do about it...
385-
// We return undefined, instead of nothing here, so it's
386-
// easier to handle this case. if(!global) { ...}
387-
388-
module.exports = g;
368+
var g;
369+
370+
// This works in non-strict mode
371+
g = (function() {
372+
return this;
373+
})();
374+
375+
try {
376+
// This works if eval is allowed (see CSP)
377+
g = g || Function("return this")() || (1,eval)("this");
378+
} catch(e) {
379+
// This works if the window reference is available
380+
if(typeof window === "object")
381+
g = window;
382+
}
383+
384+
// g can still be undefined, but nothing to do about it...
385+
// We return undefined, instead of nothing here, so it's
386+
// easier to handle this case. if(!global) { ...}
387+
388+
module.exports = g;
389389

390390

391391
/***/ }),
@@ -6808,28 +6808,28 @@ module.exports = BackboneRelational = (function() {
68086808
/* 23 */
68096809
/***/ (function(module, exports) {
68106810

6811-
module.exports = function(module) {
6812-
if(!module.webpackPolyfill) {
6813-
module.deprecate = function() {};
6814-
module.paths = [];
6815-
// module.parent = undefined by default
6816-
if(!module.children) module.children = [];
6817-
Object.defineProperty(module, "loaded", {
6818-
enumerable: true,
6819-
get: function() {
6820-
return module.l;
6821-
}
6822-
});
6823-
Object.defineProperty(module, "id", {
6824-
enumerable: true,
6825-
get: function() {
6826-
return module.i;
6827-
}
6828-
});
6829-
module.webpackPolyfill = 1;
6830-
}
6831-
return module;
6832-
};
6811+
module.exports = function(module) {
6812+
if(!module.webpackPolyfill) {
6813+
module.deprecate = function() {};
6814+
module.paths = [];
6815+
// module.parent = undefined by default
6816+
if(!module.children) module.children = [];
6817+
Object.defineProperty(module, "loaded", {
6818+
enumerable: true,
6819+
get: function() {
6820+
return module.l;
6821+
}
6822+
});
6823+
Object.defineProperty(module, "id", {
6824+
enumerable: true,
6825+
get: function() {
6826+
return module.i;
6827+
}
6828+
});
6829+
module.webpackPolyfill = 1;
6830+
}
6831+
return module;
6832+
};
68336833

68346834

68356835
/***/ }),

knockback-core-stack.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

knockback-core.js

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
knockback-core.js 1.2.2
2+
knockback-core.js 1.2.3
33
Copyright (c) 2011-2019 Kevin Malakoff.
44
License: MIT (http://www.opensource.org/licenses/mit-license.php)
55
Source: https://github.com/kmalakoff/knockback
@@ -586,27 +586,27 @@ module.exports = TypedValue = (function() {
586586
/* 3 */
587587
/***/ (function(module, exports) {
588588

589-
var g;
590-
591-
// This works in non-strict mode
592-
g = (function() {
593-
return this;
594-
})();
595-
596-
try {
597-
// This works if eval is allowed (see CSP)
598-
g = g || Function("return this")() || (1,eval)("this");
599-
} catch(e) {
600-
// This works if the window reference is available
601-
if(typeof window === "object")
602-
g = window;
603-
}
604-
605-
// g can still be undefined, but nothing to do about it...
606-
// We return undefined, instead of nothing here, so it's
607-
// easier to handle this case. if(!global) { ...}
608-
609-
module.exports = g;
589+
var g;
590+
591+
// This works in non-strict mode
592+
g = (function() {
593+
return this;
594+
})();
595+
596+
try {
597+
// This works if eval is allowed (see CSP)
598+
g = g || Function("return this")() || (1,eval)("this");
599+
} catch(e) {
600+
// This works if the window reference is available
601+
if(typeof window === "object")
602+
g = window;
603+
}
604+
605+
// g can still be undefined, but nothing to do about it...
606+
// We return undefined, instead of nothing here, so it's
607+
// easier to handle this case. if(!global) { ...}
608+
609+
module.exports = g;
610610

611611

612612
/***/ }),

knockback-core.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

knockback-full-stack.js

+44-44
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
knockback-full-stack.js 1.2.2
2+
knockback-full-stack.js 1.2.3
33
Copyright (c) 2011-2019 Kevin Malakoff.
44
License: MIT (http://www.opensource.org/licenses/mit-license.php)
55
Source: https://github.com/kmalakoff/knockback
@@ -365,27 +365,27 @@ kb.Events = Backbone.Events;
365365
/* 1 */
366366
/***/ (function(module, exports) {
367367

368-
var g;
369-
370-
// This works in non-strict mode
371-
g = (function() {
372-
return this;
373-
})();
374-
375-
try {
376-
// This works if eval is allowed (see CSP)
377-
g = g || Function("return this")() || (1,eval)("this");
378-
} catch(e) {
379-
// This works if the window reference is available
380-
if(typeof window === "object")
381-
g = window;
382-
}
383-
384-
// g can still be undefined, but nothing to do about it...
385-
// We return undefined, instead of nothing here, so it's
386-
// easier to handle this case. if(!global) { ...}
387-
388-
module.exports = g;
368+
var g;
369+
370+
// This works in non-strict mode
371+
g = (function() {
372+
return this;
373+
})();
374+
375+
try {
376+
// This works if eval is allowed (see CSP)
377+
g = g || Function("return this")() || (1,eval)("this");
378+
} catch(e) {
379+
// This works if the window reference is available
380+
if(typeof window === "object")
381+
g = window;
382+
}
383+
384+
// g can still be undefined, but nothing to do about it...
385+
// We return undefined, instead of nothing here, so it's
386+
// easier to handle this case. if(!global) { ...}
387+
388+
module.exports = g;
389389

390390

391391
/***/ }),
@@ -7522,28 +7522,28 @@ kb.untilFalseFn = function(stand_in, fn, model) {
75227522
/* 30 */
75237523
/***/ (function(module, exports) {
75247524

7525-
module.exports = function(module) {
7526-
if(!module.webpackPolyfill) {
7527-
module.deprecate = function() {};
7528-
module.paths = [];
7529-
// module.parent = undefined by default
7530-
if(!module.children) module.children = [];
7531-
Object.defineProperty(module, "loaded", {
7532-
enumerable: true,
7533-
get: function() {
7534-
return module.l;
7535-
}
7536-
});
7537-
Object.defineProperty(module, "id", {
7538-
enumerable: true,
7539-
get: function() {
7540-
return module.i;
7541-
}
7542-
});
7543-
module.webpackPolyfill = 1;
7544-
}
7545-
return module;
7546-
};
7525+
module.exports = function(module) {
7526+
if(!module.webpackPolyfill) {
7527+
module.deprecate = function() {};
7528+
module.paths = [];
7529+
// module.parent = undefined by default
7530+
if(!module.children) module.children = [];
7531+
Object.defineProperty(module, "loaded", {
7532+
enumerable: true,
7533+
get: function() {
7534+
return module.l;
7535+
}
7536+
});
7537+
Object.defineProperty(module, "id", {
7538+
enumerable: true,
7539+
get: function() {
7540+
return module.i;
7541+
}
7542+
});
7543+
module.webpackPolyfill = 1;
7544+
}
7545+
return module;
7546+
};
75477547

75487548

75497549
/***/ }),

knockback-full-stack.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

knockback.js

+22-22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
knockback.js 1.2.2
2+
knockback.js 1.2.3
33
Copyright (c) 2011-2019 Kevin Malakoff.
44
License: MIT (http://www.opensource.org/licenses/mit-license.php)
55
Source: https://github.com/kmalakoff/knockback
@@ -586,27 +586,27 @@ module.exports = TypedValue = (function() {
586586
/* 3 */
587587
/***/ (function(module, exports) {
588588

589-
var g;
590-
591-
// This works in non-strict mode
592-
g = (function() {
593-
return this;
594-
})();
595-
596-
try {
597-
// This works if eval is allowed (see CSP)
598-
g = g || Function("return this")() || (1,eval)("this");
599-
} catch(e) {
600-
// This works if the window reference is available
601-
if(typeof window === "object")
602-
g = window;
603-
}
604-
605-
// g can still be undefined, but nothing to do about it...
606-
// We return undefined, instead of nothing here, so it's
607-
// easier to handle this case. if(!global) { ...}
608-
609-
module.exports = g;
589+
var g;
590+
591+
// This works in non-strict mode
592+
g = (function() {
593+
return this;
594+
})();
595+
596+
try {
597+
// This works if eval is allowed (see CSP)
598+
g = g || Function("return this")() || (1,eval)("this");
599+
} catch(e) {
600+
// This works if the window reference is available
601+
if(typeof window === "object")
602+
g = window;
603+
}
604+
605+
// g can still be undefined, but nothing to do about it...
606+
// We return undefined, instead of nothing here, so it's
607+
// easier to handle this case. if(!global) { ...}
608+
609+
module.exports = g;
610610

611611

612612
/***/ }),

knockback.min.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)