- Mar 14, 2012
-
-
Rene Saarsoo authored
Makes it easier to find the close-all-tabs feature.
-
Rene Saarsoo authored
Handling the internals of tabs inside the view and leaving the handling of higher-level events to the controller.
-
Rene Saarsoo authored
It makes sense for the tabs component to adjust itself when it's resized, rather than having a controller tell it.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Monitor the clicks on menu items inside the view. This way the whole interaction with tab-menu is entirely encapsulated inside view.
-
Rene Saarsoo authored
Instead access the menu from this.overflowButton.menu.
-
Rene Saarsoo authored
Replace it with classname.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
Use class name instead.
-
- Mar 13, 2012
-
-
Rene Saarsoo authored
In supporting Google Closure Compiler syntax. For the record types to even reach type parser the DocParser needed to be modified to parse the {...} type blocks by taking account the need to balance the braces.
-
Rene Saarsoo authored
It completely puzzles me why Google Closure Compiler requires varargs type name in function argument context to be wrapped inside square braces, while in normal context no square brackets are needed. But here we go...
-
Rene Saarsoo authored
And better structured tests.
-
Rene Saarsoo authored
Also now only allow optionality suffix "=" be used inside function type arguments.
-
Rene Saarsoo authored
Needed for function type parameter types.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
In supporting Google Closure compiler syntax.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
- string - number - boolean - null - undefined When "string" is used as type and String class exists, a link to String class is created. Otherwise just text "string" is shown.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
In supporting Google Closure Compiler syntax.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
To support Google Closure Compiler syntax for optional parameters. @param {Type=} name This is detected at DocParser not in TypeParser like the rest of the type definition syntax - all other way of defining optional parameters are also implemented in DocParser, so it keeps things simpler to have it all in there at one spot.
-
Rene Saarsoo authored
In supporting Google Closure Compiler syntax.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
In supporting Google Closure Compiler syntax.
-
Rene Saarsoo authored
The syntax used by Google Closure Compiler.
-
- Mar 12, 2012
-
-
Rene Saarsoo authored
Supported by Google Closure Compiler.
-
Rene Saarsoo authored
-
Rene Saarsoo authored
It was deprecated in 3.2.1 in December 2011. Should be OK to remove now.
-
Rene Saarsoo authored
We can now have input files in any encoding as long as --encoding option specifies it correctly. When encoding differs from UTF-8, we convert the text to UTF-8 internally and always output in UTF-8 also. This option only works in Ruby 1.9. Under 1.8 it has no effect.
-
Rene Saarsoo authored
In Ruby 1.9 reading files through builtin IO class attempted to auto-detect the encoding which sometimes failed. Created JsDuck::IO to be used instead of it, which forces all files to be treated as UTF-8. It also behaves well in Ruby 1.8 - just doing nothing with the input and causing no errors.
-
- Mar 09, 2012
-
-
Rene Saarsoo authored
Recent changes in server now allow any links to be posted.
-
Rene Saarsoo authored
For now it's just dead code. Better remove before it becomes a problem.
-
Rene Saarsoo authored
Instead of supplying it in every request config object.
-
Rene Saarsoo authored
It deals with extracting data from form, and the form is described in view. So it really is the specifics that should belong to view. So the view now does the extracting of data and then calls Auth.login().
-
Rene Saarsoo authored
Using the same function now in both Auth and Comments controllers.
-
Rene Saarsoo authored
Rename several methods: - loggedIn -> setLoggedIn - loggedOut -> setLoggedOut For setting the state of login form. - getSession -> retreveSession "get" is a bad start for method that doesn't return a value. - showLogin -> showLoginForm Previously it was hard to distinguish it from showLoggedIn. - loggedIn -> isLoggedIn Now the method for checking logged in status is named the same way in both Auth and AuthHelpers. This also differenciates it from the event "loggedIn".
-
Rene Saarsoo authored
Currently used nowhere, not supported by backend either.
-
Rene Saarsoo authored
All Ajax and JsonP request for comments data are now performed through a custom #request method that appends server and session ID data to the given URL.
-
Rene Saarsoo authored
I didn't notice before that there was a #showError method already, so I created #notify method to notify of subscription changes. Merging these two methods now into #notify to cover both uses. The method now takes a third argument to allow for anchoring on different sides. One downside is, that I threw out the smooth fade-in and fade-out of subscription notification. It was a bit of a too much trouble for such a small feature, so I guess the overall simplicity in code is a win.
-