aboutsummaryrefslogtreecommitdiff
path: root/doc/bugs
diff options
context:
space:
mode:
authorGravatar https://www.google.com/accounts/o8/id?id=AItOawl1D_4vD5ueaDw8gRsIYPO3UHRKEpFfg9I <@web>2013-01-25 02:42:04 +0000
committerGravatar admin <admin@branchable.com>2013-01-25 02:42:04 +0000
commit4ca1280b2a36760f5b0dd09408679cad7765f197 (patch)
treeefedd9359db0ebc2480864f06e5f3ab936bde0c9 /doc/bugs
parent4c9468ec109236d3ed28370d873cffcb677e467d (diff)
Diffstat (limited to 'doc/bugs')
-rw-r--r--doc/bugs/javascript_functions_qouting_issue.mdwn37
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/bugs/javascript_functions_qouting_issue.mdwn b/doc/bugs/javascript_functions_qouting_issue.mdwn
new file mode 100644
index 000000000..6a0a37317
--- /dev/null
+++ b/doc/bugs/javascript_functions_qouting_issue.mdwn
@@ -0,0 +1,37 @@
+**What is the expected output? What do you see instead?**
+
+SyntaxError: missing ( before formal parameters
+
+function longpoll_"sidebar"() {
+
+reposi...c5e0ead (строка 5, столбец 18)
+
+
+**Please provide any additional information below.**
+
+functions have illegal characters in their names: *function longpoll_"sidebar"*
+
+ <script>function longpoll_"sidebar"() {
+ longpoll(longpoll_"sidebar"_url, '"sidebar"'
+ , function() { setTimeout(longpoll_"sidebar", "10"); }
+ , function() { webapp_disconnected(); }
+ );
+ }
+ $(function() {
+ $.get("/notifier/sidebar?auth=bd717e7499f2c42363719c833d3df2d25b77cf42184aacbcd0f969895911a0208ba17fd4f468c4b97274d5e3f7f419260e5df7d83d2e7642524a89325c5e0ead", function(url){
+ longpoll_"sidebar"_url = url;
+ setTimeout(longpoll_"sidebar", "10");
+ });
+ });
+ function longpoll_"repolist"() {
+ longpoll(longpoll_"repolist"_url, '"repolist"'
+ , function() { setTimeout(longpoll_"repolist", "10"); }
+ , function() { webapp_disconnected(); }
+ );
+ }
+ $(function() {
+ $.get("/notifier/repolist/RepoSelector%20%7BonlyCloud%20=%20False,%20onlyConfigured%20=%20False,%20includeHere%20=%20True%7D?auth=bd717e7499f2c42363719c833d3df2d25b77cf42184aacbcd0f969895911a0208ba17fd4f468c4b97274d5e3f7f419260e5df7d83d2e7642524a89325c5e0ead", function(url){
+ longpoll_"repolist"_url = url;
+ setTimeout(longpoll_"repolist", "10");
+ });
+ });