javascript - Visual Studio Intellisense for Backbone.js -
javascript - Visual Studio Intellisense for Backbone.js -
is there -vsdoc.js
file backbone.js? if not, there feasible work-around method intellisense backbone.js javascript library?
i don't think there vsdoc. couldn't find in nuget , searching didn't bring up.
an alternative might reference non-minified version same way reference vsdoc file. may function list , maybe parameter names.
if have js tool (many of them in extensions manager), or have resharper 6.0, may able go definition of function or , read comments in there (the non-minified version has comments, not in vsdoc format).
update:
some mutual reference code, enable intellisense not reference file, assuming utilize nuget package. http://nuget.org/packages/backbone.js
reference in razor file (.cshtml)
@if (false) { <script src="/scripts/backbone.js" type="text/javascript"></script> }
reference in webforms view engine (.aspx, .ascx, .master):
<% if(false) { %> <script src="/scripts/backbone.js" type="text/javascript"></script> <% } %>
reference in javascript file (.js)
/// <reference path="/scripts/backbone.js" />
javascript visual-studio backbone.js intellisense
Comments
Post a Comment