mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-08-29 20:19:22 +03:00
Drop support for old browsers and some jQuery
This commit is contained in:
parent
091c4ec811
commit
d06fed09d6
38 changed files with 6137 additions and 872 deletions
|
|
@ -1,8 +1,8 @@
|
|||
(function () {
|
||||
// Hide or don't minify context properties, see https://github.com/knockout/knockout/issues/2294
|
||||
var contextSubscribable = ko.utils.createSymbolOrString('_subscribable');
|
||||
var contextAncestorBindingInfo = ko.utils.createSymbolOrString('_ancestorBindingInfo');
|
||||
var contextDataDependency = ko.utils.createSymbolOrString('_dataDependency');
|
||||
var contextSubscribable = Symbol('_subscribable');
|
||||
var contextAncestorBindingInfo = Symbol('_ancestorBindingInfo');
|
||||
var contextDataDependency = Symbol('_dataDependency');
|
||||
|
||||
ko.bindingHandlers = {};
|
||||
|
||||
|
|
@ -565,11 +565,6 @@
|
|||
};
|
||||
|
||||
ko.applyBindings = function (viewModelOrBindingContext, rootNode, extendContextCallback) {
|
||||
// If jQuery is loaded after Knockout, we won't initially have access to it. So save it here.
|
||||
if (!jQueryInstance && window['jQuery']) {
|
||||
jQueryInstance = window['jQuery'];
|
||||
}
|
||||
|
||||
if (arguments.length < 2) {
|
||||
rootNode = document.body;
|
||||
if (!rootNode) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue