桌面通知中的自定义/样式标题和正文方向(chrome)

时间:2017-09-04 14:27:01

标签: javascript windows google-chrome browser

当使用从右到左的语言(如阿拉伯语)书写标题和正文时使用桌面推送通知,即使对象中未提供dir和lang param,浏览器也会检测语言并更改方向例如:

The title is under the setting icon (this is the current implementation)

注意:这种行为对于Windows用户而言更具体,只是Chrome浏览器IOS始终使用ltr方向,如果dir和lang提供与否,我尝试使用chrome rich通知也没有工作

问题:我如何自定义桌面通知,至少显示漏洞标题。

非常感谢您提前

2 个答案:

答案 0 :(得分:1)

您是否尝试按如下方式自定义通知目录:

var options = {
  body: 'some text',
  dir: 'ltr'
}

var n = new Notification('Test notification',options);

n.dir // should return 'ltr'

答案 1 :(得分:0)

根据MDN,有一个lang option强制语言方向,但我不确定这是否会影响标题

// Example from MDN

var options = {
  body: 'Do you like my body?',
  lang: 'en-US'
}

var n = new Notification('Test notification',options);

n.lang // should return 'en-US'