Skip to content

Commit

Permalink
Correcting broken links in README.md + small details
Browse files Browse the repository at this point in the history
  • Loading branch information
Qeole committed Mar 29, 2015
1 parent 3445f0a commit 063f790
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The highlight.js minimal script included in this module provides support for 22

## License

The code relative to the add-on itself is placed under the Mozilla Public License v. 2.0 (see file [LICENSE][6]).
The code relative to the add-on itself is placed under the Mozilla Public License v. 2.0 (see file [LICENSE][5]).

The code for highlight.js (_i.e._ everything under the `data/highlightjs` directory) was released under the BSD License (see relative [LICENSE][6] file for details).

Expand All @@ -49,7 +49,7 @@ Other than on the [hilight.js homesite][1], you can find a list of supported lan
[1]: https://highlightjs.org
[2]: https://blog.mozilla.org/addons/2015/02/10/extension-signing-safer-experience
[3]: https://addons.mozilla.org/firefox/addon/enlight
[4]: https://developer.mozilla.org/en-US/Add-ons/SDK/Tutorials/Getting_started)
[4]: https://developer.mozilla.org/en-US/Add-ons/SDK/Tutorials/Getting_started
[5]: https://github.com/Qeole/Enlight/blob/master/LICENSE
[6]: https://github.com/isagalaev/highlight.js/blob/master/LICENSE
[7]: https://github.com/Qeole/Enlight/blob/master/data/languages.json
Expand Down
2 changes: 1 addition & 1 deletion data/languages-all.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"auto" : "<b data-l10n-id='autodetect'></b>",
"auto" : "",
"apache" : "Apache",
"bash" : "Bash",
"cpp" : "C, C++",
Expand Down
2 changes: 1 addition & 1 deletion data/languages.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"auto" : "<b data-l10n-id='autodetect'></b>",
"auto" : "",
"apache" : "Apache",
"bash" : "Bash",
"cpp" : "C, C++",
Expand Down
Binary file modified enlight.xpi
Binary file not shown.
8 changes: 5 additions & 3 deletions test/test-main.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,11 @@ exports["test main03 highlight blank"] = function(assert, done) {
clickInPanel("auto");
main.doHighlight();
utils.waitUntil(function(){return !main.panel.isShowing;}).then(() => {
assert.ok(!main.button.state("tab").checked, "03c button toggled off");
assert.ok(!main.panel.isShowing, "03c panel is closed");
done();
utils.waitUntil(function(){return !main.button.state("tab").checked}).then(() => {
assert.ok(!main.button.state("tab").checked, "03c button toggled off");
assert.ok(!main.panel.isShowing, "03c panel is closed");
done();
});
});
});
};
Expand Down

0 comments on commit 063f790

Please sign in to comment.