Support Windows 8 Metro Apps
----------------------------
Key: COUCHDB-1381
URL: https://issues.apache.org/jira/browse/COUCHDB-1381
Project: CouchDB
Issue Type: New Feature
Components: HTTP Interface
Affects Versions: 1.1.1
Environment: Windows 8
Reporter: Chang Luo
Priority: Critical
Fix For: 1.1.2
jquery.couch.js doesn't work for Windows 8 Metro apps. Below code works fine
on browsers. However when run within a Windows 8 Metro app, it throws an error
in line 665 jquery.couch.js: alert undefined.
If this is hard to fixed, any alternative javascript library recommendation is
welcome.
<!DOCTYPE html>
<html>
<head>
<title>CouchDB jQuery Examples</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script src="js/json2.js"></script>
<script src="js/sha1.js"></script>
<script src="js/jquery.js"></script>
<script src="js/jquery.couch.js"></script>
<script src="js/jquery.dialog.js"></script>
</head>
<body>
<script>
console.log('starting');
$.couch.urlPrefix = "http://localhost:5984";
$.couch.db("_users").allDocs({
success: function (data) {
console.log();
}
});
console.log('done');
</script>
</body>
</html>
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira