Google Closure is a framework for writing large-scale applications in JavaScript. It includes an extensive library, a linter, a compiler, a template system, and a stylesheet language.
0
votes
0answers
13 views
Creating on popupmenu on a right-click(contextmenu) event on a document not working as expected
I'm trying to listen to a right-click event on a document, on which a pop-up menu (goog.ui.popupmenu) should be created. The very first time, the menu is created on right-click, but after that its ...
0
votes
1answer
11 views
Getting Closure / Plovr to remove functions from an if that is always false
An if statement that is obviously always false, eg. if (false), closure removes the statement.
My code looks like this:
if (settings.lang === "en"){
lib.doSomething();
}
settings.lang is a ...
0
votes
1answer
40 views
Bad type annotation. Unknown type
I keep getting the warning mentioned above but can't figure out why. I've added deps.js and deps.js contains a reference to the type.
Here is the offending code:
goog.provide("MyCompany.MyApp.dom");
...
0
votes
1answer
21 views
Eclipse code assist and closure compiler annotations
I have been fiddling with Eclipse to get it to code assist my code for hours and hours and looking at the declaration of document.getElementById() it looks like Eclipse completes objects that have ...
0
votes
1answer
15 views
Compiling closure stylesheets in java (like SoyFileSet)
https://developers.google.com/closure/templates/docs/commands explains how to compile Google stylesheets using command line. I was expecting something like SoyFileSet which I can use to compile Google ...
0
votes
0answers
50 views
How to download a pdf file through javascript?
My javascript code makes the following AJAX request to my node.js server:
var url = '/node/download';
var downloadRequest = new goog.net.XhrIo();
downloadRequest.headers.set('content-type', ...
0
votes
1answer
34 views
Creating Dom Structure or Only Manipulating (Best Practice) (Hows does Google do it)
What is the best Practice in creating a RIA via JavaScript and the Google Closure Library?
To Have one HTML Site that gets loaded and the Javascript will creating all Dom elements or is it better to ...
0
votes
1answer
26 views
Google Closure and Chrome packaged apps: compatibility?
I am using Google Closure and and I am trying to make a Chrome packaged app.
My call to goog.require causes an error:
Uncaught document.write() is not available in packaged apps.
The culprit is in ...
0
votes
1answer
54 views
How do I get closurebuilder to add my files?
Let's say I have a JS application which involves fileA. In addition to fileA, there is fileB which depends on fileA both in folder "js". For example:
fileA:
goog.provide('mainProject');
...
0
votes
1answer
51 views
JavaScript GameClosure support in Eclipse
I am learning GameClosure (a HTML5 game engine) and want to develop in JavaScript in Eclipse. I've downloaded WTP 3.4.2 plugin, but Eclipse don't recognize the syntax of import ... as ... like here:
...
0
votes
0answers
16 views
Google Closure Lib Db Connection
I'm working with Google Closure Lib, but I'm lost about the connection with a db. Could you illuminate me with some suggestions/tips please? I don't know how to proceed. Thanks.
6
votes
1answer
118 views
How is the api doc generated @ http://api.highcharts.com/
I cannot find anything relate to it from github https://github.com/highslide-software/highcharts.com
Guessing
Google Closure Library javadoc parser
...
0
votes
1answer
20 views
Google Closure Project Dependency
I have two projects, project A and B, both built with the Google Closure Library.
How can I make project B dependent on Project A so that I can goog.require Project A modules in Project B allowing ...
1
vote
0answers
47 views
Google Closure: How to annotate a parameter used as a constructor
I use require.js for dependency management and Google Closure annotations to empower me with autocompletion (in WebStorm / IDEA). We rely heavily on Backbone and develop our Javascript code in ...
0
votes
2answers
29 views
Google Closure Library inherits properties
I'm experimenting with the Google closure library and in particluar its 'inherits' method.
I have one question. When I extend a base class, if I do not set the base class's properties in its ...
0
votes
2answers
52 views
how to create a style selector in google closure editor
I wonder how difficult it is to create a working "style selector" selector in the goog closure editor similar to the one in tinymce.
I mean a selector of text styles such as
heading 1
heading 2
...
1
vote
1answer
86 views
Closure-Compiler externs for AngularJS ui-router
Are there closure compiler externs available for AngularJS's ui-router?
Is there an appropriate place to ask for these from the closure compiler (or Angular-ui) team?
3
votes
1answer
155 views
How to configure karma-runner (also known as testacular) to work with closure-library
I'm trying to use karma-runner with mocha testing framework to test an application built with closure-library and angularjs.
I always get namespace.Application is not defined
thanks in advance.
...
0
votes
0answers
56 views
Logging in google closure and dumping objects to console like console.log(myObject)
I like to dump objects to console sometimes so I can click on it and inspect it. For example:
console.log(document.body);
In closere it seems the logs log everything to console under every group ...
1
vote
1answer
98 views
GUI Layer on limeJS
I'm working with limeJS trying to figure out the best way to put a GUI over limeJS. Here's a better explanation:
I've created two classes, one called 'SceneWithGui' and another called 'GuiOverlay'. ...
1
vote
1answer
68 views
Lifecycle of components with children
I'm confused about where to call various aspects of childrens' lifecycle in composite components. I do not see the way how one Component may be used in other Component which in turn may be used in ...
1
vote
3answers
81 views
JavaScript + css handling - Closure Tools / any other tools?
We do not have a lot of experience in Javascript/CSS world as we do primarily Java EE projects (backends). We usually have webapp/resource directory where is all the JS+CSS content and that`s it.
It ...
1
vote
2answers
41 views
What's the advantage of goog.inherits' use of a temporary constructor?
From Google's Closure library:
goog.inherits = function(childCtor, parentCtor) {
/** @constructor */
function tempCtor() {};
tempCtor.prototype = parentCtor.prototype;
childCtor.superClass_ = ...
1
vote
1answer
38 views
Untangling JS Source from Closure Compiler
There is a javascript application I would like to modify for my use*. The problem is, the js is compiled with Google Closure Compiler. Obviously, I should modify the sources (which are available in ...
1
vote
2answers
60 views
Generation of getters and setters in Javascript compatible with Closure Compiler
I'm writing a library that I hope to be compatible with Closure Compiler in Advanced mode. Most objects in the library maintain an internal object of attributes that are frequently part of the API, ...
0
votes
1answer
30 views
Experience with using google closure library in AIR?
I would like to try closure library in an AIR application. Will be using objects like goog.editor, goog.events and goog.dom.
In an older book I'm reading about google closure it says it's using eval ...
0
votes
2answers
42 views
Can I share typedefs (Google Closure) across source files?
If I define a typedef in one file, for example:
/**
* @typedef {{
* prop1: string,
* prop2: number
* }}
*/
myClass.typedef;
Can I share it across files? I don't want to have to declare the ...
2
votes
2answers
54 views
Rewriting a property named “default” with Google Closure Templates
In the data that I send to a Google Closure template, I have a property named default. I plan on compiling both the JavaScript code and the code generated by SoyToJsSrcCompiler using the Google ...
0
votes
1answer
49 views
Sending compiled objects to Closure Templates
If I call a template from JavaScript with:
namespace.template(record);
where record is an instance of:
/** @typedef {{var: string}} */
and I use the Google Closure Compiler in advanced mode, ...
0
votes
3answers
56 views
Conditional assignment in JavaScript with Google Closure: | vs ||
I am using Google Closure and LOVE conditional assignments. I regularly use the
var stuff = (condition) ? opt0: opt1;
method and have more recently been introduced to
var stuff = opt_param || ...
0
votes
1answer
32 views
closure compiler and closure inspector
I am reading an old book on google closure and it tells me about debugging code using closure inspector. The following page tells me that it's depreciated:
...
0
votes
1answer
31 views
Does Google Closure Templates support extending templates
E.g. I want my page templates page1.soy, page2.soy, pagex.soy to extend my base.soy template which includes a header and footer.
Is this supported?
This is common functionality in e.g. Django and ...
1
vote
2answers
78 views
Variables in Google Closure
http://closure-compiler.appspot.com/home
(function(){
var somevar = 'somevar';
this.each(function(){
var minify_var = {
method1: somevar + '1',
method2: somevar + '2',
method3: somevar + ...
0
votes
0answers
41 views
goog.structs.Map returning true for containsKey that doesn't exist
When using Map, if I ask the following in console, I get some conflicting results and can't figure out why containsKey gives me an incorrect answer. cameFrom does NOT contain currentNode. It also only ...
1
vote
2answers
71 views
How to rename/keep the callback methods
I have a function that checks that the callback methods within an object exist. Currently the Closure Compiler renames the methods (onClickDisplay and onCloseHide) so all the checks in ...
0
votes
2answers
54 views
Export property of an object
How do I export the method of an object to call externally in the HTML page.
The JavaScript code:
my.namespace.FeedbackController = Class.create();
...
0
votes
3answers
100 views
Closure compiler mixes variable names
I have a problem where the Closure Compiler renames a global variable something like x.sa.xa but in all function where that global variable is referenced the compiler renames it something else like ...
1
vote
1answer
98 views
Accessing “this” in Clojurescript
Is there a way to access the "this" object in clojurescript?
I am having issues with event propagation when I wrap an icon with an anchor and try to attach a handlder to the anchor. Without access to ...
0
votes
1answer
55 views
jQuery to Closure (Keep header on screen)
I'm working on a site that uses Closureextensively. I need to make a header row stick when everything else scrolls. I know how to do this in jQuery with just a few lines of code:
...
0
votes
1answer
54 views
How to compile several files to the same ones
I know that Google Closure Compiler allows me to compile several files into a single one like the following:
java -jar compiler.jar --js assets/js/file1.js
assets/js/file2.js --js_output_file ...
1
vote
1answer
196 views
How to use CoffeeScript together with Google Closure
Recently I have started to use Google Closure Tools for my javascript development. Until now, I have used to write my code in CoffeeScript, however, the javascript generated by CoffeeScript seems to ...
2
votes
1answer
65 views
Using Plovr to compile modules
I am trying to compile my JavaScript files using Plovr as defined in the config file below:
{
"id": "hello_demo",
"paths": ".",
"closure-library": "closure-library/closure/goog/",
"mode": ...
1
vote
2answers
127 views
Creating a script to use Google Closure for multiple javascript files
I need to use the Google Closure compiler.jar to minify a huge project I am working on. I have multiple js files that I want to compile into a single game.min.js file. I know I can use the ...
0
votes
0answers
101 views
Document properties without a value in JSDoc3
I'm using Jsdoc3 to document my JavaScript project. I'm also using the Google Closure Compiler and Google Closure Library.
Some of the properties on my classes start out as undefined, and are later ...
1
vote
0answers
39 views
Google closure on CouchDB
My goog dependencies are working 100% on a regular server, but I'm moving to CouchDB, which as you might know, sort of destroys the file hierarchy. Some of my dependencies aren't loading, but I am not ...
2
votes
1answer
131 views
What grid is behind spreadsheet in google doc?
Tired of various half-usable grids, I would really love to lay my hands on the grid/table component behind spreadsheet in Google Docs.
What I'm really keen on is the ability to navigate with ...
5
votes
2answers
180 views
Is it possible to use Clojurescript or Google Closure to write Chrome extensions or web app?
I want to use clojurescript to write chrome extensions.
0
votes
0answers
57 views
Watch mode in compiler Google Closure Template
Google Closure Template provides a compiler from .soy files to javascript files. But I have to run the long java -jar ... command every time after edit `.soy' file. I just wonder whether there is a ...
1
vote
1answer
31 views
Is the Google API client for javascript compatible with the Closure advanced mode compilation?
Mostly, the title says it all, but I could not find any answer in the documentation of the library.
Specifically, can I use said library from Clojurescript ?
Cheers
1
vote
2answers
372 views
example of angularjs with closure
The angularjs FAQ has the following:
Can I use the open-source Closure Library with Angular?
Yes, you can use widgets from the Closure Library in Angular.
However, I could not find any ...

