Closure Library is a JavaScript framework used by Google and one of three components to Closure Tools, an open source toolset to aid with developing front-end web applications
0
votes
1answer
39 views
self invoking anonymous function and the Closure Compiler
I am migrating some javascript code to the Google Closure Compiler. This is the first time I have done it.
Some parts of my code have self invoking anonymous functions like so
(function($) {
...
0
votes
2answers
38 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
67 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
29 views
WIKI: How to use Lime (how to use closure-compiler with 3rd party (closure) libraries)
The following post inspired me to have a look at limeJS, as a side project I'm working on and off an a Yatzee game (mostly off) and thought that might be a nice library to use.
As a beginner in ...
1
vote
1answer
50 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 ...
0
votes
1answer
50 views
Closure goog.require. Compile error
I use Google closure library and compiler in my project.
I get strange error on next string:
if (!properties.name) {
throw {message: 'Widget name expected'};
}
properties.name = ...
0
votes
0answers
34 views
Moving from YUI editor to Google closure Editor
I have planned to use Google closure editor over existing YUI editor mainly because of the many issues with Indent/Outdent, blockquote faced in Chrome. The initial demo looks promising, does anyone ...
0
votes
0answers
41 views
viewport size is zero when element isn't visible
I have a closure modalPopup which contains an element using viewport for its size, i.e. width: 30vw, height:30vw. However, the modalPopup always have width and length to be zero because at the time ...
1
vote
1answer
92 views
Closure Dev Mode & Chrome Packaged App — “document.write() is not available in the sandbox of packaged apps”
I'm running into issues in development mode with Closure as the security policies for my Chrome Packaged App (i.e., v2 manifest file) are restricting things called in the Closure bootstrap process ...
1
vote
0answers
38 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 ...
0
votes
0answers
69 views
Is there any live example about the usage of module/loader/moduleloader in closure library
I am new in closure library,and I have no idea how to use the module pattern provided in goog.module package.
Any live demo or docs?
Update:
I have read the "Closure: The Definitive Guide",and ...
1
vote
1answer
122 views
Google Closure JSON data submission with nested objects?
I've been using Google Tools (library, templating) for almost a year... and I came to the point where a I have to connect the backend with all the templates i've been working on. The backend receives ...
0
votes
0answers
32 views
How to integrate Print Directive of Google Closure Template (Soy)
I would like to know how to integrate a print plugin of Google Closure Template, a.k.a. Soy, step by step if you can, mainly because I'm pretty bad at Java.
Below page explains how to do that, but I ...
0
votes
1answer
80 views
Getting “b is undefined” in my .js file with LimeJS
I'm trying to use the javascript compiled file, but I get "b is undefined" since I launch the app with it.
I have really no idea where does it come from.
I removed et init again the sources from ...
0
votes
1answer
85 views
How to use google closure locale and i18n tools?
I am trying to see if I can use Google Closure library form mya webapp's internationalization and localization needs. I tried to find any tutorials on the subject, but could not find any and it seems ...
1
vote
2answers
109 views
Google Closure Library: What's the “correct” way to parse a boolean?
One of the things I have learned in dealing with Google Closure is that the library has virtually everything I could possibly want in terms of raw data manipulation and management. What's up to me is ...
0
votes
1answer
149 views
Google closure - Triggering form submit
I have a form with a closure ui button:
<form id="login-form">
<div>
<input type="text" name="email" />
<input type="password" name="password" />
...
0
votes
1answer
35 views
How to disable auto-repeated key events in tv-container
Is there a way to disable auto-repeated key events? Specifically I'm using the closure google tv web ui library, and when holding down/up scrolling through the components of a tv-container-vertical ...
3
votes
1answer
282 views
jquery vs google closure ajax
I've been looking into the google closure library for ajax calls, and I've gone through an example that looks like:
goog.events.listen(request, "complete", function(){
if (request.isSuccess()) {
...
0
votes
1answer
78 views
Closure events bubble down
I'm working on a web app in Google closure where the structure is something like this:
App
+ Control Pane
| + Search Box
| + Search Button
+ Result Pane
+ Results
+ Next Page Link
...
1
vote
1answer
81 views
Preferred method of recursive decoration in Closure
I'm looking for a way to take a document fragment (generated from a Soy template) in Google Closure and recursively decorate any elements with corresponding UI Components in the registry.
It seems ...
2
votes
2answers
2k views
Uncaught ReferenceError: require is not defined
For a project that I am working on I have been using a hodgepodge of javascript libraries. The main logic of my code is broken down into multiple commonjs modules. I use google closure to combine ...
0
votes
1answer
90 views
GoogleTV Closure Library Getting Started
I've been trying to figure out how to use the google closure library for d-pad navigation for my web app. I cannot for the life of me get closure to work. I'm following google's guide here ...
1
vote
2answers
58 views
How to add a new drop target after initializing drag drop sources
How can I add new drop target after initializing drag drop sources. I tried to add it to the source and then calling init on the new targets. But it didn't work.
1
vote
1answer
115 views
How to set the default font in Google Closure Library rich text editor
Google Closure Library editor: demo, documentation.
The editable area is an iframe. How can I set the default font of the editable area? Now it is the default font of the browser. I prefer not to put ...
0
votes
1answer
155 views
How do I use the Google Closure Compiler to build one file?
The question is a little more complicated than the title suggests, so allow me to elaborate. I have a project that is split into two repositories. The both use Google Closure for dependency management ...
2
votes
1answer
73 views
Google closure library: stopPropagation on components
I am trying to figure out why stopPropagation does not work when used with google closure components. It works fine for browserEvents but not for Events on components. Please see example code below ...
0
votes
0answers
106 views
"Uncaught TypeError: Cannot read property 'DATEFORMATS' of undefined google closure
I am using the Internationalization date formatting API provided
by Google Closure Library. I implemented it in my application few days
a go , which was working fine until today. I am getting this bug
...
3
votes
0answers
112 views
Google Closure localization using goog.getMsg() method
Hi has anyone tried localizing their applications using google closure goog.getMsg() method. The issue is i am not able to get how to load the external file which contains translated strings and use ...
1
vote
1answer
190 views
Passing argument with goog.events.listen
I'm using Google Closure's event handling like this:
goog.events.listen(this.contentElement, goog.events.EventType.CLICK, this.openEditor);
But I need to pass a string as an argument into the ...
0
votes
1answer
197 views
google closure library rich text editor
I want a standalone rich text editor from google closure library but it does
have a lot of files is there a minified version
just for the text editor to download
i spend 4 hours and i couldn't ...
1
vote
1answer
157 views
Google Kix editor - how to send data using POST?
Can I include this text editor for Google Docs to my project?
https://github.com/benjamn/kix-standalone
or this is illegal?
I suspect that this person just steal the code. If this legal how can I ...
0
votes
3answers
196 views
Swap two horizontally aligned divs
I have the following DOM elements on one horizontal line:
A div containing a line of text; i.e. "Hello world". The width of this div is the same as the containing text.
A button to swap the two ...
0
votes
2answers
233 views
google closure library usage from google app scripts using HtmlService
Is it possible to access google closure library functions from google app scripts via HtmlService? The html files in the google scripts seems to be filtering out anything related to closure library.
...
0
votes
1answer
106 views
Number of characters displayed per line
Is there any way to figure out the number of characters a browser will display per line inside a container of known size?
So I have a rectangle of known dimensions, recX and recY, a pre-defined ...
0
votes
3answers
264 views
Get the clientWidth and clientHeight of resized image
I am resizing an image in JavaScript based on the current viewport size. No media queries and other such things, JS all the way, and no static sizes for elements.
So basically it looks something like ...
1
vote
2answers
368 views
Multiple file upload with Google Closure Library
How to handle multiple file uploads with Google Closure?
Is it possible to use YUI3 Uploader with Google Closure
Library? Is there an externs file available for YUI3? Would it be
possible to put the ...
0
votes
1answer
123 views
How to use goog.module to load modules dynamically
I want to use goog.module of google closure library to implement JS module lazy loading.
I've been able to use the modules by typing goog.require(module_name). However, the script module will be ...
7
votes
1answer
407 views
Using Closure Library on Phonegap(Android) application
Hi has any one used google's Closure Library https://developers.google.com/closure/ in building Phonegap applications on Android. I have read that Closure has good support for internationalization of ...
0
votes
2answers
297 views
How do I iterate over enum values in Google Closure?
I'm trying to find the best way to iterate over all of the values on an enum defined in Google Closure. Let's say I have the following enum defined:
/**
* @enum {number}
*/
sample.namespace.Fruit = ...
0
votes
1answer
98 views
Intellisense and the Google closure library
Are there any files or vsdoc files available to get Intellisense working with the Google closure library?
1
vote
1answer
133 views
Use arrows to scroll a div
I want to replicate the functionality of a scroll bar with arrows, so that you can use up and down arrows to scroll inside a div. However, I am looking for a solution WITHOUT jQuery or any other ...
5
votes
2answers
128 views
Hide Google Library's warnings
I'm using Google Closure and Google Library with my projects and I'm meeting troubles with warnings.
My project is made of ~50 files with somme small warnings (JSDoc mistakes). The problem is Google ...
1
vote
1answer
169 views
How do you get the current viewport position of a DOM element using Google's Closure library?
I am using Google's closure library for a project and want to find the position of a given element on the page. Basically I want to do what Quirksmode findPos() does:
...
0
votes
1answer
122 views
Browser displayed favicon blinks on hash change
When I change the hash location via document.location.hash or window.location.hash, most browsers have some form of a 'blinking' effect. I need to prevent that, as I am implementing a history plugin ...
0
votes
0answers
108 views
Google Closure Library – Compilation Warnings
I've been using the Google Closure Compiler for a few years but I haven't played with the actual Closure Library that much.
When I compile my app, I get the following warnings. The referenced code is ...
0
votes
1answer
72 views
Where can I find a list the google closure editor plugins?
I find the google closure documentation difficult to navigate and I can't seem to find a list of the plugins I need to reference to use with my editor field?
Could anyone point me to it?
0
votes
1answer
396 views
Touch events not working as expected. Minimum slide length is being overlooked by Safari
The reason why changedTouches is searched for is because the Closure Compiler flattens the properties of the event object in ADVANCED_COMPILATION mode, and since the position of the TouchEvent ...
2
votes
3answers
222 views
Any way to use goog.require in development with convention-over-configuration?
Is there any way I can use Google Closure goog.require to manage JS dependencies, without having to register each namespace explicitly in a dependencies.js file?
I like the idea of the compiler for ...
1
vote
1answer
77 views
“Exception : Duplicate provide” when building Closure project with calcdeps.py
I'm new to the Closure Tools. In this case I have a project structure like this:
Using calcdeps.py to combine and compile my project, I got this exception:
Exception: Duplicate provide ...