[
https://issues.apache.org/jira/browse/COUCHDB-1381?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13189095#comment-13189095
]
Robert Newson commented on COUCHDB-1381:
----------------------------------------
Dale Harvey suggests that instead of adding that Windows abomination, we a)
change jquery.couch.js to throw an exception instead of alert(str) and b) have
Futon catch exceptions and report them appropriately. This strikes me as a very
sane proposal.
> Support Windows 8 Metro Apps
> ----------------------------
>
> Key: COUCHDB-1381
> URL: https://issues.apache.org/jira/browse/COUCHDB-1381
> Project: CouchDB
> Issue Type: Bug
> Components: HTTP Interface
> Affects Versions: 1.1.1
> Environment: Windows 8
> Reporter: Chang Luo
> Labels: javascript, metro, windows
>
> 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