Commit d3f0d1fd authored by Sven Franck's avatar Sven Franck

bugfix: external link

parent eb3d8ccd
......@@ -11,5 +11,44 @@
"application_category":"Projects",
"application_title_i18n":"application.custom.task_manager_js.title",
"application_description_i18n":"application.custom.task_manager_js.description"
},
{
"application_image_type": "image",
"application_image_url": "",
"application_toc_accept": true,
"application_published":null,
"application_submitted":"08/15/2013",
"application_description":"A generic text editor based purley on JavaScript.",
"application_url":"",
"application_title":"Text Editor JS",
"application_category":"Documents",
"application_title_i18n":"application.custom.text_editor_js.title",
"application_description_i18n":"application.custom.text_editor_js.description"
},
{
"application_image_type": "image",
"application_image_url": "",
"application_toc_accept": true,
"application_published": null,
"application_submitted":"08/15/2013",
"application_description":"Visualize your workflows in pure JavaScript.",
"application_url":"",
"application_title":"Workflow JS",
"application_category":"Projects",
"application_title_i18n":"application.custom.workflow_js.title",
"application_description_i18n":"application.custom.workflow_js.description"
},
{
"application_image_type": "image",
"application_image_url": "",
"application_toc_accept": true,
"application_published": null,
"application_submitted":"08/15/2013",
"application_description":"JavaScript Contact Manager, easily integrateable with other applications.",
"application_url":"",
"application_title":"Contacts JS",
"application_category":"Contacts",
"application_title_i18n":"application.custom.contacts_js.title",
"application_description_i18n":"application.custom.contacts_js.description"
}
]
\ No newline at end of file
......@@ -1764,7 +1764,7 @@
"title": props.title || "",
"data-i18n": "[title]" + (props.title_i18n || "")
},
{"data-external": props.external ? true : null}
{"rel": props.external ? "external" : null}
);
}
......@@ -1840,7 +1840,7 @@
"title": props.right.title || "",
"data-i18n": "[title]" + (props.right.title_i18n || "")
},
{"data-external": props.right.external || null}
{"rel": props.right.external ? "external" : null}
));
// split check/radio
if (props.right.check || props.right.radio) {
......@@ -2766,6 +2766,7 @@
case "data-":
case "role":
case "type":
case "rel":
case "readonly":
case "size":
if (setters[attribute]) {
......@@ -3885,6 +3886,7 @@
}
}
}
if (e === undefined || handle) {
if (config.deeplink) {
create = true;
......
......@@ -144,6 +144,18 @@
"task_manager_js": {
"title": "Task Manager JS",
"description": "The Task Manager is a web mobile applicaion based on HTML5, CSS3, Javascript, Jquery, Jquery Mobile, Grunt, Requirejs and many other plugins, no servers side language like php, java and so on... is needed. Data are fetch and retrieved by a more powerfull API named JIO. busness rules are now implemented by the client layer, data can be store either on localstorage for the browser or on remote storage like S3, Webdav, xwiki, dropbox and so on. The librairy named jIO provide methods(get, post, put, allDocs) for manipulating data. The application is integrating webapp, enabling offline support. At runtime, all files are downloaded into the user's device (browser cache), witch make the application faster the new time. It can run on laptop, tablets, smartphone and all devices having a web browser regardless of the OS."
},
"text_editor_js": {
"title": "Text Editor JS",
"description": "A generic text editor based purley on JavaScript."
},
"workflow_js": {
"title": "Workflow JS",
"description": "Visualize your workflows in pure JavaScript."
},
"contacts_js": {
"title": "Contacts JS",
"description": "JavaScript Contact Manager, easily integrateable with other applications"
}
},
"field_list": {
......
......@@ -144,6 +144,18 @@
"task_manager_js": {
"title": "任务管理 JS",
"description": "任务管理是一个基于HTML5,CSS3,Javascript,Jquery,Jquery移动,Grunt,Requirejs 以及许多其他插件技术上的移动网络应用,无需任何php,java等服务器方语言。 数据是从一个叫做JIO的更强大的应用程序接口中提取和恢复. 商务指令由用户方执行,数据可以被储存在浏览器的本地存储区或是远程存储器例如S3,Webdav,xwiki,dropbox等。这个叫做JIO的程序库可以提供操控数据的指令(get,post,put,allDocs)。这个程序整合了基于Web的系统和应用,并提供离线支持。在运行的时候,所有的文件都被下载到用户的设备中(浏览器缓存),从而使程序运行的更快。无论使用的是哪种操作系统,它都可以在电脑,平板,智能手机以及所有只要具有网络浏览器的设备上运行。"
},
"text_editor_js": {
"title": "文本编辑 JS",
"description": "一个完全基于JavaScript的文本编辑."
},
"workflow_js": {
"title": "工作流程 JS",
"description": "在JavaScript上将您的工作流程形成图像."
},
"contacts_js": {
"title": "联络 JS",
"description": "JavaScript 联络管理,方便与其他应用兼容"
}
},
"field_list": {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment