- 17 Mar, 2015 25 commits
-
-
Jake Hartnell authored
-
Randall Leeds authored
-
Randall Leeds authored
-
Randall Leeds authored
Requires some small tweaks around various places we have icons in use. In fact, this actually eliminates a lot of the small tweaks in favor of more flexible alignment.
-
Randall Leeds authored
-
Randall Leeds authored
Rather than absolute positions and padding and whatnot just set the width on the input element and set white-space: nowrap to ensure it and the icon are side-by-side.
-
Randall Leeds authored
-
Randall Leeds authored
-
Randall Leeds authored
-
Randall Leeds authored
Better to use data attributes for signaling the intent than to be overloading the CSS class.
-
Randall Leeds authored
-
Jake Hartnell authored
-
Jake Hartnell authored
-
Jake Hartnell authored
Clean up and delete a few unneeded things.
-
Jake Hartnell authored
-
Jake Hartnell authored
-
Jake Hartnell authored
-
Jake Hartnell authored
-
Jake Hartnell authored
-
Jake Hartnell authored
-
Randall Leeds authored
-
Randall Leeds authored
-
Jake Hartnell authored
-
Jake Hartnell authored
-
Jake Hartnell authored
-
- 14 Mar, 2015 3 commits
-
-
Randall Leeds authored
-
Randall Leeds authored
Make the bridge service a factory instead
-
csillag authored
- Remove unused support for options - Simplify the handling of scope - Make it a simpleton, and register the class as the constructor function. Also updated all tests. Kudos to @tilgovi for the feedback and ideas.
-
- 13 Mar, 2015 2 commits
-
-
Randall Leeds authored
Fix sidebar's focusing on annotation cards
-
csillag authored
When the user moves the mouse over a highlight in the document, the corresponding annotation card (in the sidebar) is supposed to be highlighted, to indicate focus. Our mechanism for this was broken in 3 different ways: 1. AnnotationUI service's focusAnnotations() method was working with annotation IDs. However, annotations being created right now don't yet have ID, only tags. So we should be working with tags instead. (Like we are, in many other cases when cross-frame communication communication is done around annotations.) I fixed that, and also updated the corresponding tests. 2. In controllers.coffee, when we were trying to check if a given annotation has focus, we were using the tag value, while on the other hand, it was not the tag, but the id that was put into the map. Of course this didn't work. Since now we are consistently using the tag, no change was needed here. 3. We are putting $$tag:true pairs into the map, but when checking for membership, the `in` operator was used. That works for lists, but not for maps. For maps, we simply have to read out the value belonging to the given key, and see if it's true. After fixing these problems, the feature works again.
-
- 12 Mar, 2015 1 commit
-
-
Randall Leeds authored
Replace type() typechecks with isinstance()
-
- 11 Mar, 2015 5 commits
-
-
Randall Leeds authored
-
Randall Leeds authored
I will let it have its way.
-
Randall Leeds authored
That shaves ~50kB off the minified bundle. Close #2019
-
Randall Leeds authored
Fix #2013
-
Randall Leeds authored
Use the jQuery from `Annotator.$`.
-
- 07 Mar, 2015 1 commit
-
-
Randall Leeds authored
Remove dead things, move specific things, rename things. - Drop the unmaintained Vagrantfile - Drop the SSL cert - Drop MANIFEST.in for setuptools_git (Close #1329) - Move install docs into docs - Move config files into config
-
- 06 Mar, 2015 3 commits
-
-
Randall Leeds authored
Improve separation of h.api
-
Randall Leeds authored
Fix replies hover highlight
-
Nick Stenning authored
Clicking on the share icon didn't result in the share link being shown. For now, the simplest way to fix this is to ensure that we get the correct container element by using event.currentTarget (which will always be the <a> tag) rather than event.target (which might be the <i> tag).
-