ep_comments_page
Advanced tools
Comparing version 0.1.15 to 0.1.16
{ | ||
"description": "Adds comments on sidebar and link it to the text. For no-skin use ep_page_view.", | ||
"name": "ep_comments_page", | ||
"version": "0.1.15", | ||
"version": "0.1.16", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Nicolas Lescop", |
# Comments and annotations for Etherpad | ||
![Screen shot](http://i.imgur.com/sbiJ4xz.png) | ||
![Screen shot](https://user-images.githubusercontent.com/220864/98013526-617ff900-1df2-11eb-88b6-cf259372f6ca.PNG) | ||
@@ -5,0 +5,0 @@ ## Installing this plugin with npm. |
@@ -69,2 +69,12 @@ describe("ep_comments_page - Comment icons", function() { | ||
// we only run test if icons are enabled | ||
// don't run this test in safari. borrowed from https://stackoverflow.com/questions/7944460/detect-safari-browser | ||
var ua = navigator.userAgent.toLowerCase(); | ||
if (ua.indexOf('safari') != -1) { | ||
if (ua.indexOf('chrome') > -1) { | ||
// Chrome | ||
} else { | ||
return this.skip(); | ||
} | ||
} | ||
await finishTestIfIconsAreNotEnabled(async () => { | ||
@@ -71,0 +81,0 @@ var inner$ = helper.padInner$; |
298885
6282