Skip to content

Commit

Permalink
bump version to 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rniemeyer committed Mar 31, 2014
1 parent 90ad546 commit d6bc005
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 12 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,5 @@ _config.yml
_site
test
node_modules
reports
reports
example
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "knockout-kendo",
"version": "0.7.0",
"version": "0.8.0",
"main": "build/knockout-kendo.min.js",
"dependencies": {
"knockout": ">= 2.0"
Expand Down
5 changes: 1 addition & 4 deletions build/knockout-kendo.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* knockout-kendo 0.7.0
* knockout-kendo 0.8.0
* Copyright © 2013 Ryan Niemeyer & Telerik
*
* Licensed under the Apache License, Version 2.0 (the "License");
Expand Down Expand Up @@ -257,10 +257,7 @@ ko.kendo.BindingFactory = function() {
}
//option is observable, determine what to write to it
else if (eventConfig.writeTo && ko.isWriteableObservable(options[eventConfig.writeTo])) {
console.log("binding handler for", eventName);

handler = function(e) {
console.log("firing handler for", eventConfig.writeTo);
var propOrValue, value;

if (!childProp || !e[childProp] || e[childProp] === element) {
Expand Down
4 changes: 2 additions & 2 deletions build/knockout-kendo.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "knockout-kendo",
"version": "0.7.0",
"version": "0.8.0",
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-uglify": "0.x.x",
Expand Down
3 changes: 0 additions & 3 deletions src/knockout-kendo-core.js
Original file line number Diff line number Diff line change
Expand Up @@ -225,10 +225,7 @@ ko.kendo.BindingFactory = function() {
}
//option is observable, determine what to write to it
else if (eventConfig.writeTo && ko.isWriteableObservable(options[eventConfig.writeTo])) {
console.log("binding handler for", eventName);

handler = function(e) {
console.log("firing handler for", eventConfig.writeTo);
var propOrValue, value;

if (!childProp || !e[childProp] || e[childProp] === element) {
Expand Down

0 comments on commit d6bc005

Please sign in to comment.