1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-25 23:02:26 +00:00

use new version check url

This commit is contained in:
lins05
2012-08-16 17:37:18 +08:00
parent 40480f8b22
commit 967e6727bd

View File

@@ -261,13 +261,13 @@ $('#open-local').click(function () {
var local_applet_running = false; var local_applet_running = false;
$.ajax({ $.ajax({
url: '{{ applet_root }}/seafile_access_check/', url: '{{ applet_root }}/seafile_rpc_version/',
dataType: 'jsonp', dataType: 'jsonp',
jsonpCallback: 'xx', jsonpCallback: 'xx',
crossDomain: true, crossDomain: true,
success: function(version) { success: function(version) {
local_applet_running = true; local_applet_running = true;
if (version < 3) { if (version < 1) {
update_url = '<a href="http://www.seafile.com/download/">升级</a>'; update_url = '<a href="http://www.seafile.com/download/">升级</a>';
$('#open-local-file-error').html('您的 Seafile 客户端版本太低,请' + update_url + '到最新版本'); $('#open-local-file-error').html('您的 Seafile 客户端版本太低,请' + update_url + '到最新版本');
$('#open-local-file-error-dlg').modal({appendTo:'#main'}); $('#open-local-file-error-dlg').modal({appendTo:'#main'});
@@ -281,7 +281,7 @@ $('#open-local').click(function () {
// is not running yet. // is not running yet.
setTimeout(function() { setTimeout(function() {
if (!local_applet_running) { if (!local_applet_running) {
$('#open-local-file-error').html('请确认本地 Seafile 程序启动'); $('#open-local-file-error').html('Seafile 客户端程序启动或者版本过低');
$('#open-local-file-error-dlg').modal({appendTo:'#main'}); $('#open-local-file-error-dlg').modal({appendTo:'#main'});
} }
}, 2000); }, 2000);