Current section
37 Versions
Jump to
Current section
37 Versions
Compare versions
15
files changed
+60
additions
-35
deletions
| @@ -17,7 +17,7 @@ _If you are having problems, view `README_INSTALL.md` for manual instructions._ | |
| 17 17 | |
| 18 18 | ```elixir |
| 19 19 | def deps do |
| 20 | - [{:thesis, "~> 0.0.15"}] |
| 20 | + [{:thesis, "~> 0.0.16"}] |
| 21 21 | end |
| 22 22 | |
| 23 23 | def application do |
| @@ -6,7 +6,7 @@ For automatic setup, see `README.md`. | |
| 6 6 | |
| 7 7 | ```elixir |
| 8 8 | def deps do |
| 9 | - [{:thesis, "~> 0.0.15"}] |
| 9 | + [{:thesis, "~> 0.0.16"}] |
| 10 10 | end |
| 11 11 | |
| 12 12 | def application do |
| @@ -120,7 +120,7 @@ | |
| 120 120 | <<"package.json">>]}. |
| 121 121 | {<<"licenses">>,[<<"MIT">>]}. |
| 122 122 | {<<"links">>, |
| 123 | - [{<<"Docs">>,<<"https://hexdocs.pm/thesis/0.0.15/api-reference.html">>}, |
| 123 | + [{<<"Docs">>,<<"https://hexdocs.pm/thesis/0.0.16/api-reference.html">>}, |
| 124 124 | {<<"GitHub">>,<<"https://github.com/infinite_red/thesis">>}]}. |
| 125 125 | {<<"maintainers">>, |
| 126 126 | [<<"Jamon Holmgren">>,<<"Ken Miller">>,<<"Daniel Berkompas">>]}. |
| @@ -145,5 +145,5 @@ | |
| 145 145 | [{<<"app">>,<<"html_sanitize_ex">>}, |
| 146 146 | {<<"name">>,<<"html_sanitize_ex">>}, |
| 147 147 | {<<"optional">>,false}, |
| 148 | - {<<"requirement">>,<<"~> 0.1.0">>}]]}. |
| 149 | - {<<"version">>,<<"0.0.15">>}. |
| 148 | + {<<"requirement">>,<<"~> 1.0.0">>}]]}. |
| 149 | + {<<"version">>,<<"0.0.16">>}. |
| @@ -223,7 +223,7 @@ defmodule Thesis.View do | |
| 223 223 | data_content_type = "data-thesis-content-type=\"#{content_type}\"" |
| 224 224 | data_content_id = "data-thesis-content-id=\"#{page_content.name}\"" |
| 225 225 | data_global = (page_content.page_id == nil) && "data-thesis-content-global=\"true\"" || "" |
| 226 | - "#{classes} #{data_content_type} #{data_content_id} #{data_global}" |
| 226 | + "#{classes} #{data_content_type} #{data_content_id} #{data_global} tabindex=\"99999\"" |
| 227 227 | end |
| 228 228 | |
| 229 229 | defp render_editable(%{content_type: "html"} = page_content) do |
| @@ -1,6 +1,6 @@ | |
| 1 1 | defmodule Thesis.Mixfile do |
| 2 2 | use Mix.Project |
| 3 | - @version "0.0.15" # REMEMBER TO UPDATE package.json and both READMEs! |
| 3 | + @version "0.0.16" # REMEMBER TO UPDATE package.json and both READMEs! |
| 4 4 | |
| 5 5 | def project do |
| 6 6 | [ |
| @@ -25,7 +25,7 @@ defmodule Thesis.Mixfile do | |
| 25 25 | {:phoenix_html, ">= 0.0.0"}, |
| 26 26 | {:ecto, ">= 0.0.0"}, |
| 27 27 | {:plug, "~> 1.0"}, |
| 28 | - {:html_sanitize_ex, "~> 0.1.0"}, |
| 28 | + {:html_sanitize_ex, "~> 1.0.0"}, |
| 29 29 | {:ex_doc, ">= 0.0.0", only: [:dev]}, |
| 30 30 | {:earmark, ">= 0.0.0", only: [:dev]}, |
| 31 31 | {:dialyze, ">= 0.0.0", only: [:test, :dev]} |
Loading more files…