This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Initializing client with transport "websocket" | |
node: ../src/node.cc:1210: ssize_t node::DecodeWrite(char*, size_t, v8::Handle<v8::Value>, node::encoding): Assertion `b[1] == 0' failed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<UsingTask TaskName="GitVersion" TaskFactory="CodeTaskFactory" AssemblyFile="$(MSBuildToolsPath)\Microsoft.Build.Tasks.v4.0.dll" > | |
<ParameterGroup> | |
<LocalPath ParameterType="System.String" /> | |
<Path ParameterType="System.String" /> | |
<CommitCount ParameterType="System.Int32" Output="true" /> | |
</ParameterGroup> | |
<Task> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ko.bindingHandlers.keyFilter = { | |
init: function(element, value, allBindings) { | |
var filter = ko.bindingHandlers.keyFilter[allBindings.keyFilter]; | |
if (!filter) return; | |
$(element).keypress(function(event) { | |
if (!filter(event.which)) { | |
event.stopPropagation(); | |
return false; |
NewerOlder