- 03 Oct, 2014 1 commit
-
-
Randall Leeds authored
-
- 29 Sep, 2014 1 commit
-
-
Randall Leeds authored
@pkra informs us that since we're "only support TeX-like input" we should use this URL instead: https://github.com/hypothesis/h/pull/1532/files#r18140614
-
- 28 Sep, 2014 1 commit
-
-
Randall Leeds authored
Besides potentially delaying the websocket connection unnecessarily, this was causing a subtle race condition wherein the stream would miss a digest and appear blank. Reasons are unclear, and may hide dragons.
-
- 27 Sep, 2014 3 commits
-
-
Randall Leeds authored
-
Randall Leeds authored
Close #1213
-
Randall Leeds authored
Close #867
-
- 26 Sep, 2014 5 commits
-
-
Randall Leeds authored
Add math support
-
RawKStar77 authored
Multiple instances of Math in one annotation weren't rendering well. Put return in front of renderMath() recursive call.
-
RawKStar77 authored
Kill if !MathJax?
-
RawKStar77 authored
-
RawKStar77 authored
-
- 25 Sep, 2014 18 commits
-
-
RawKStar77 authored
Remove unneeded math variable Fix typo in forgetting to remove an instance of MathJaxFallback from the scope
-
RawKStar77 authored
Delete console.log error
-
RawKStar77 authored
-
RawKStar77 authored
-
Randall Leeds authored
Incorporates changes to the PDF plugin to support more recent PDF.js.
-
RawKStar77 authored
-
Randall Leeds authored
Updates PDF plugin and stops creating excess quote properties.
-
Randall Leeds authored
-
Randall Leeds authored
Now when we track down where the quote property on the target is coming from (#1207) our search will still work.
-
Randall Leeds authored
Now there should be no code in the application that assumes the existence of either of these.
-
RawKStar77 authored
-
Randall Leeds authored
Clean up unused code for bridge race conditions
-
RawKStar77 authored
If KaTex math rendering throws an error, load MathJax from the CDN and render the math with MathJax.
-
RawKStar77 authored
Add KaTex javascript, CSS, and fonts to vendor folder. Create a renderMath() function that parses sanitized markdown for math as denoted by '$$' Modify ctrl.$render to first sanitize the markdown and then renderMath. Newly rendered math is then trusted as HTML becuase otherwise ngSanatize removes crucial style attributes that leave the math unreadable.
-
Randall Leeds authored
That syntax was not what I thought it was and had nasty issues when there were no panes.
-
Randall Leeds authored
Hypothes.is 0.3.2 Conflicts: CHANGES.txt
-
Randall Leeds authored
-
Randall Leeds authored
-
- 24 Sep, 2014 9 commits
-
-
Randall Leeds authored
-
Randall Leeds authored
@aron if those tooltip attributes are used somewhere I can't find them so please correct me, sorry.
-
Randall Leeds authored
Fix #1490
-
Randall Leeds authored
Add an (optional) third argument to the method `formHelpers#applyValidationErrors()` that can take an error string, ``reason``, to set on the form itself, rather than any particular field. Remove the duplicate code in the auth directive to reset the response errors on each field, which is handled already in the ``form-input`` directive.
-
Aron Carroll authored
-
Aron Carroll authored
Rework application bootstrap.
-
Aron Carroll authored
-
Randall Leeds authored
The embed code has for some time been the place where our application is bootstrapped. When we did the epub.js integration, we added query parameters to the embed.js view to control which plugins were loaded by each instance of the application (a widget host for the reader frame and a slimmer guest annotator for the chapter frames). Change the injection bundle to instead include a separate bootstrap script. This has the nice benefit of ensuring that while we still use yepnope or a similar technique for script injection that our bootstrap code runs in the same global context as the application dependencies whether or not the embed script is run in a normal context or a Chrome extension content script context. The need for an inline script created by the embed code is no longer, since it is a separate script fetched from the server (it's bundled in production, inside the monolithic hypothesis-assets.js). Instead of passing the URI of the sidebar iframe by templating the bootstrap script, the embed script adds a link tag to the page with ``rel=sidebar`` and ``type=application/annotator+html``, which the bootstrap script looks for. This pattern fits nicely with the existing role of ``rel=sidebar`` in Firefox and Opera and nicely decouples the embeding and the bootstrapping. Further customization that used to take place in the query parameters is now done through ``window.hypothesisRole``, which can specify an alternate constructor, and ``window.hypothesisConfig``, which can be a function to configure the options passed to the constructor. This function will be useful for Single Sign On options, too, as laid out in #1437. The destroy script from the Chrome extension is put alongside the new bootstrap script, as they complement one another and are not extension specific.
-
Aron Carroll authored
Introduce zero-dependency Markdown Editor.
-
- 23 Sep, 2014 2 commits
-
-
RawKStar77 authored
-
RawKStar77 authored
Covert px values in markdown-editor.scss to use em. Note: I did this for all values except min-height on .markdown-preview which for some strange reason caused a weird flicker in Firefox. Add 'markdown-' namespace to .preview and .preview-toggle classes. Unnested CSS in markdown-editor.scss. Everything is well namespaced now so this is no longer necessary. Apply consistent sentence case to the title attributes of the markdown tools.
-