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 - Code completion for knockout only works if variable is named 'ko'
Summary: Code completion for knockout only works if variable is named 'ko'
Status: NEW
Alias: None
Product: web
Classification: Unclassified
Component: Knockout (show other bugs)
Version: 8.1
Hardware: PC Windows 7
: P3 normal (vote)
Assignee: Petr Hejl
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-08-28 12:05 UTC by markiewb
Modified: 2016-08-28 12:05 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
Screencast (65.69 KB, image/gif)
2016-08-28 12:05 UTC, markiewb
Details

Note You need to log in before you can comment on or make changes to this bug.
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
});