-3
votes
0answers
17 views

Best way to document a javascript framework? [closed]

What is the best way to document a JavaScript framework? I'm looking for something which can export to PDF and doesn't require me to add any docblocks to my code. Thanks :)
0
votes
1answer
21 views

google cloud endpoints discrepancy between documentation, and what works in my app

The documentation states you should load your api from javascript like this: var ROOT = 'https://your_app_id.appspot.com/_ah/api'; gapi.client.load('your_app_id', 'v1', function() { ...
1
vote
2answers
34 views

How to keep track of my data structures?

I'm a javascript developer for a year now but I lack some architectural/engineering background as I was lazy in college. In the beginning I was writing small scripts with relatively small and simple ...
-1
votes
1answer
40 views

Make @property private

Is there any way to make a @property private? /** * * @property {Object} shouldBePrivate but how? * */ ... I'm using jsdoc3 I want to be able to generate my documentation two times, one with ...
0
votes
2answers
39 views

Documenting REST routes and responses

I'm building a REST application with a Scala backend and JS front-end. The routes are intuitively designed to match logic, convenience and readability. However: What are the standard practices for ...
0
votes
0answers
99 views

Where is VLC browser plugin documentation?

I don't having any luck trying to find it. Information on wiki is outdated, the vlc javascript object has changed a lot since the wiki page was written. Google searching give me a more updated look of ...
1
vote
2answers
69 views

What does _.debounce do?

A project I've been working on uses _.debounce(). The Underscore JS documentation for debounce reads as follows: debounce _.debounce(function, wait, [immediate]) Creates and returns a new ...
0
votes
1answer
45 views

Editing Timestamp Script in Google Docs

I am having trouble with a script I'm trying to edit via the script gallery. I altered last updated script to have the time displayed in the active cell but the problem is I am unable to delete the ...
0
votes
0answers
28 views

yuidoc - how to define a class method in an other file

I'm writing documentation with yuidoc. However, I have a class Model, which has one of its methods defined elsewhere. Here is some code to visualize the situation. Assume I have a file model.js: /** ...
8
votes
3answers
123 views

What is a good way to document sub/pub?

Currently I'm playing around with Backbone/Marionette (though question is more general), and I have a lot of code that "sending messages" all over the application. Just as an example, something like ...
1
vote
1answer
135 views

How to comment a JS module pattern class using JSDoc3?

That's the way I actually do this but the private methods and propertys are not visable after I generate the Documentation. have I done something wrong? Incidentally, everything else works fine. I ...
0
votes
1answer
133 views

Use of the Spotify Framework Api

It's probably my fault, but I can not run the classes in the Framework Api of Spotify I take the user class as an example ...
1
vote
1answer
46 views

JSDoc - The “@name” tagged constructor don't document the properties of this

I don't found the good way to document the properties in the constructor function if I use the @name tag for give a name to my class: /** * @name ClassName * @constructor */ function noname (){ ...
0
votes
1answer
34 views

Javascript Documentation for different API's [closed]

Would you say that the definitive resource containing documentation for many core Javascript API's are found here (https://developer.mozilla.org/en-US/docs)? Are there other sources of Javascript ...
1
vote
2answers
90 views

how does google spread sheets detect cell clicks without changing focus

I'm working on my own web based spread sheet. I have it detecting formula and other cell references. The next step that I'd like to do is... while I have the function bar active (in focus), if my ...
0
votes
1answer
58 views

javascript/YUIDoc - how to document an “object” parameter of a method

I'm trying to write some documentation for a method. it looks like /** Returns an instance of className @method getInstance @param {string} className the of the class used to create the ...
1
vote
1answer
227 views

Tutorial and/or good example to learn and build jsdoc templates

So I am brand new to jsdoc and i gotta quickly build a jsdoc template to output documentation in XML format. I have basic understanding of tags involved in jsdoc. But, right now I want to build a ...
0
votes
0answers
34 views

Google script to make a custom poll on Google Docs

so I'm planning a bachelor party for a buddy of mine, and for some reason, Google Docs will not let me add a custom form; therefore, I was wondering if someone could help me develop a simple google ...
2
votes
1answer
139 views

PHP and Javascript Documentation Generating Tool

There is an ongoing project that we need to begin documenting properly with some sort of documentation generating tool before it gets too big to handle. It's mainly PHP and JS but I cannot google my ...
0
votes
1answer
82 views

Jsdoc3 Documenting Closures

I'm trying to document functionality within a class called User that is located within a closure, however jsdoc3 doesn't seem to be documented? Do the comments look wrong? /** @class User ...
0
votes
1answer
46 views

YUIDoc/javascript - how to document a module property

I've copied an example from here. Below is the example code, but the problem is that Store.TAX_RATE shows up in the documentation as a property of Item and not as a property of the module Store. Any ...
0
votes
0answers
44 views

YUIDoc: no doc generated for namespace (javascript)

I just started with YUIDoc, and I'm trying to document my javascript code. So, documenting my classes was no problem, but the following piece of code didn't really work as expected: "use strict" ; ...
-2
votes
2answers
70 views

is it correct to call an HTML page “static” if it uses ajax and/or javascript? [closed]

I am writing some documentation and I am saying that certain pages are served as static html files. I am calling them "static pages" (as opposed to dynamic web pages) to stress that they are not ...
2
votes
0answers
52 views

How to create a Tree menu in natural doc?

I am using naturaldocs to generate API Documentation for my jQuery Widget. I have 2 files Folder1 MyScript.js Forlder2 myScript1.js so i got a tree like this. MyScript myScript1 ...
1
vote
0answers
32 views

How to use naturaldocs for JS?

I am creating a docs for my js lib. i found the naturaldocs is best one. i dont know where tostart, IS there is any step by step documentation for this ? I need to install some other thing to use ...
0
votes
1answer
73 views

groc javascript documentor - arguments to document all subdirectories

Using the node.js npm package what is the command (osx bash $ groc) to create documentation for files in path/to/thisDirectory and all subdirectories? $ cd path/to/thisDirectory $ groc ...
1
vote
1answer
187 views

SkyScanner JavaScript API

I'm using SkyScanner's flight search widget on my website. The JS code that they give you to embed in your website is: <script src="http://api.skyscanner.net/api.ashx" ...
0
votes
1answer
58 views

How to specify an array of objects as a parameter or return value in JSDoc?

In JSDoc, the best documentation I can find shows to use the following if you have an array of a specific type (such as an array of strings) as: /** * @param {Array.<string>} myStrings All my ...
12
votes
0answers
148 views

Best practice for documenting events [closed]

Consider a modular web application based on JavaScript, JQuery and all that "en vouque" JavaScript stuff (that shouldn't be too extraordinary nowadays). The modules of this application are ...
1
vote
0answers
45 views

Best practice of documenting user defined events [duplicate]

Possible Duplicate: Best practice for documenting events I am developing message bus based forntend (JQuery). Within application I am generating custom events to communicate between ...
1
vote
0answers
51 views

AjaxDoc - how to configure?

i want to document my project. Everything is working fine, but i cant get AjaxDoc working. Please, could somebody write me some short tutorial how to use them? I have SHFB integrated in Visual ...
0
votes
1answer
76 views

Is there any detailed documentation for the MapQuest JavaScript API (Open Data)?

I'm trying to do some stuff with the MapQuest JavaScript SDK for Open Data. Indeed there is a reference on their site but I still don't know how to use it correctly. For example I want to get the ...
0
votes
0answers
84 views

some JSDoc questions regarding tags

My library got the Javascript part that I'm thriving to properly add JSdocs to it. Basically, a function that returns an object that have multiple functions inside is making me confused. Take this ...
-1
votes
2answers
64 views

easy to use and complete JavaScript documentation [closed]

Does anyone know of any easy to use, complete documentation for JavaScript? (like jqapi.com for jQuery) and extensive (like developer.mozilla.org)
1
vote
2answers
44 views

Where does the #method notation that I'm seeing around more and more originate from?

I'm referrering especially to places in Javascript circles, where people will use the following notation to refer to, say, a foo method: #foo. Does it derive from some other language, or did it just ...
0
votes
2answers
59 views

MapQuest API: is there a listing of all the objects with methods and properties in the documentation

I am using the MapQuest API. I have everything working the way I would like but the documentation appears incomplete. There does not appear to be any documentation on the methods and properties for ...
1
vote
2answers
1k views

Knockout renderTemplate() rendering modes

I'm trying to call ko.renderTemplate() in a custom binding. However I can't find any documentation for it's usage, particularly the rendering mode parameter. Knockout.js pro tips – working with ...
0
votes
1answer
136 views

Google Docs: if, then else, print [closed]

I'm wanting to create a formula which looks at various cells and assign the data into a category, based on time. For example: Start times of events: Walking Dog: 8:00 Walking to Work: 8:45 Arrive ...
4
votes
1answer
124 views

How to specify resolution and rejection type of the promise in JSDoc?

I have some code that returns a promise object, e.g. using Q library for NodeJS. var Q = require('q'); /** * @returns ??? */ function task(err) { return err? Q.reject(new Error('Some error')) ...
-4
votes
1answer
191 views

How to make page breaks like in Google Docs and Microsoft Word [closed]

I am working on this project where I have a div with contenteditable. I wanted it to make it so that when the div starts to overflow, the textarea makes kind of a page break. Google Docs implements ...
-1
votes
1answer
160 views

An interactive guide for web page elements? [closed]

pageguide.js shows usage help about web page's elements by overlaying help balloons over the page. The concept is great, but pageguide.js doesn't support IE8, is hard to customize (eg. font sizes), ...
0
votes
0answers
68 views

The execution speed is very slow Javascript for app google [closed]

I have a Javascript app development Drive, I use a spreadsheet to manage information with an interface, but the execution speed is very slow, is there way to improve performance?
1
vote
0answers
132 views

Documenting new functions with JSDoc

Unfortunately I don't have enough reputation to post a comment, so I had to create similar question to How to document this using jsdoc. Answer didn't help me, so I have the same problem like topic ...
2
votes
1answer
530 views

_Best Practices for JSDoc'ing Javascript files written in the “revealing module pattern” Style?

Most of my Javascript functions are relatively simple, and called for their sideeffects: I use jQuery to manipulate the DOM or make Ajax-calls. I prefer to write my functions in the "revealing ...
0
votes
1answer
113 views

Documentation javascript code yuidoc

I want to generate documentation for a collection of javascript files. I'm trying to generate with yuidoc, but I don't know how to document standalone functions. function getNullString(){...} ...
2
votes
1answer
63 views

Documenting JS function which takes an object as an argument

In dynamic languages like JavaScript or PHP it is common practise to pass only one argument to the function. This argument is an object which encapsulate all options. What is the best way of ...
-2
votes
1answer
79 views

Show a demo of an HTML page built with PHP using jQuery and/or PHP [closed]

I have a API form which accepts different inputs and displays result based on those inputs. I have to do the Documentation and Demo. Documentation is done but I have no idea about doing a page demo ...
1
vote
0answers
87 views

Google Docs surface engine

Is there any link to a more in-depth details about the Google Docs layout engine? If it uses webgl, or the canvas element 2d context, or anything. I know google did it from scratch calculating ...
4
votes
1answer
93 views

What is the convention for documenting arguments passed to a callback in javascript?

When using a javadoc-style documenting style, is there a convention for documenting the arguments passed to a callback function? /** * @param cb {Function} A callback that will be passed a name ...
0
votes
0answers
151 views

Automatically generate documentation from Modular (AMD) JavaScript? [closed]

We're writing a fat-client web application and want automatically generated documentation for the client-side code. Requirements for a JS documentation solution: Be written in-line, next to each ...

1 2 3 4