【发布时间】:2014-04-06 18:09:31
【问题描述】:
我想在 Notofication Firefox OS 中显示一个图标,因为我使用此代码:
var img = './images/icon-30.png';
var notification = new Notification('Notification', { body: 'Body Notification', icon: img });
notification.addEventListener('click', function() {launchSelf();});
在桌面图标显示良好
但图标不显示在移动设备(Firefox OS Simulator)
有什么问题?任何的想法 ?谢谢。
更新
如果我像这样从 url 获取图标:https://cdn1.iconfinder.com/data/icons/app-tab-bar-icons-for-ios/30/User_login.png 图标在模拟器中显示良好,所以我认为问题是路径:/
注意:我使用的是 Firefox OS 1.3,图标大小为 30 x 30
【问题讨论】:
标签: javascript firefox firefox-os web-notifications