This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 267734

Summary: Code completion for knockout only works if variable is named 'ko'
Product: web Reporter: markiewb
Component: KnockoutAssignee: Petr Hejl <phejl>
Status: NEW ---    
Severity: normal CC: ppisl
Priority: P3    
Version: 8.1   
Hardware: PC   
OS: Windows 7   
Issue Type: DEFECT Exception Reporter:
Attachments: Screencast

Description markiewb 2016-08-28 12:05:21 UTC
Created attachment 161790 [details]
Screencast

See the example and the screencast

require(['knockout'], function (knockout) {
  knockout.| //CC at | does not show applyBindings
});

require(['knockout'], function (ko) {
  ko.| //CC at | shows applyBindings
});