Skip to content

Commit f2f6729

Browse files
committedApr 9, 2015
Remove defaultOption for TreeView as it conflicts with using DOM for tree and with dataSource.
1 parent fbee8e3 commit f2f6729

5 files changed

+5
-7
lines changed
 

‎bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "knockout-kendo",
3-
"version": "0.9.2",
3+
"version": "0.9.3",
44
"main": "build/knockout-kendo.min.js",
55
"dependencies": {
66
"knockout": ">= 2.0"

‎build/knockout-kendo.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* knockout-kendo 0.9.2
2+
* knockout-kendo 0.9.3
33
* Copyright © 2013 Ryan Niemeyer & Telerik
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
@@ -1183,7 +1183,6 @@ createBinding({
11831183

11841184
createBinding({
11851185
name: "kendoTreeView",
1186-
defaultOption: DATA,
11871186
watch: {
11881187
data: function(value, options) {
11891188
ko.kendo.setDataSource(this, value, options);

‎build/knockout-kendo.min.js

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

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "knockout-kendo",
3-
"version": "0.9.2",
3+
"version": "0.9.3",
44
"devDependencies": {
55
"grunt": "~0.4.1",
66
"grunt-contrib-uglify": "0.x.x",

‎src/knockout-kendoTreeView.js

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
createBinding({
22
name: "kendoTreeView",
3-
defaultOption: DATA,
43
watch: {
54
data: function(value, options) {
65
ko.kendo.setDataSource(this, value, options);

0 commit comments

Comments
 (0)
Please sign in to comment.