Commit 8eef11d6 authored by David Stutz's avatar David Stutz

Merge pull request #294 from Jorg10/patch-1

Update bootstrap-multiselect.js
parents c7bac6ca d2ad4795
......@@ -9,6 +9,15 @@
!function($) {
"use strict";// jshint ;_;
if (Array.prototype.forEach === null || Array.prototype.forEach === undefined) {
Array.prototype.forEach = function (func) {
var index;
for (index = 0; index < this.length; ++index) {
func(this[index]);
}
};
}
if (typeof ko !== 'undefined' && ko.bindingHandlers && !ko.bindingHandlers.multiselect) {
ko.bindingHandlers.multiselect = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment