Advertisement
Guest User

Untitled

a guest
Sep 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.17 KB | None | 0 0
  1. ../../templates/settings.js:46: ERROR - Parse error. missing name after . operator
  2. if (USER.super){
  3. ^
  4.  
  5. ../../templates/settings.js:47: ERROR - Parse error. syntax error
  6. tabsection = $('<div class="tabsection">').appendTo(SETTINGS_CONTENT);
  7. ^
  8.  
  9. ../../templates/settings.js:61: ERROR - Parse error. missing name after . operator
  10. var label = (user.super ? "<b>" + user.login + "</b>" : user.login);
  11. ^
  12.  
  13. ../../templates/settings.js:72: ERROR - Parse error. missing name after . operator
  14. $('<div class="settingsinputcontainer" style="margin-top: 20px;"><input class="inputtext" type="password" name="settings_manage_users_change_pass" placeholder="Enter new password" '+ (user.super ? "disabled" : "") +'></div>').appendTo(setting_section);
  15. ^
  16.  
  17. ../../templates/settings.js:103: ERROR - Parse error. missing } after property list
  18. } else {
  19. ^
  20.  
  21. ../../templates/settings.js:127: ERROR - Parse error. syntax error
  22. }
  23.  
  24. ../../templates/settings.js:128: ERROR - Parse error. syntax error
  25. },
  26.  
  27. ../../templates/settings.js:130: ERROR - Parse error. syntax error
  28. user_upload_bookmarks: function(success){
  29. ^
  30.  
  31. ../../templates/settings.js:131: ERROR - Parse error. syntax error
  32. $.ajax({
  33. ^
  34.  
  35. ../../templates/settings.js:132: ERROR - Parse error. syntax error
  36. url: CRUD_URL + "user/update",
  37. ^
  38.  
  39. ../../templates/settings.js:133: ERROR - Parse error. syntax error
  40. data: { id : USER["_id"], bookmarks : JSON.stringify(Bookmarks.BMS)},
  41. ^
  42.  
  43. ../../templates/settings.js:134: ERROR - Parse error. syntax error
  44. dataType: 'json',
  45. ^
  46.  
  47. ../../templates/settings.js:135: ERROR - Parse error. syntax error
  48. success: success
  49. ^
  50.  
  51. ../../templates/settings.js:136: ERROR - Parse error. syntax error
  52. });
  53. ^
  54.  
  55. ../../templates/settings.js:137: ERROR - Parse error. syntax error
  56. },
  57. ^
  58.  
  59. ../../templates/settings.js:139: ERROR - Parse error. syntax error
  60. user_management_create: function(){
  61. ^
  62.  
  63. ../../templates/settings.js:140: ERROR - Parse error. syntax error
  64. tabcontent.html('');
  65. ^
  66.  
  67. ../../templates/settings.js:214: ERROR - Parse error. syntax error
  68. },
  69. ^
  70.  
  71. ../../templates/settings.js:216: ERROR - Parse error. syntax error
  72. manual_conversion: function(){
  73. ^
  74.  
  75. ../../templates/settings.js:217: ERROR - Parse error. syntax error
  76. SETTINGS_CONTENT.html("<h2 style='margin: 20px 0 0 15px;'>Manual clicks conversion</h2>");
  77. ^
  78.  
  79. ../../templates/settings.js:254: ERROR - Parse error. syntax error
  80. },
  81. ^
  82.  
  83. ../../templates/settings.js:256: ERROR - Parse error. syntax error
  84. custom_variables: function(){
  85. ^
  86.  
  87. ../../templates/settings.js:257: ERROR - Parse error. syntax error
  88. SETTINGS_CONTENT.html("<h2 style='margin: 20px 0 0 15px;'>Custom variables management</h2>");
  89. ^
  90.  
  91. ../../templates/settings.js:268: ERROR - Parse error. syntax error
  92. },
  93. ^
  94.  
  95. ../../templates/settings.js:270: ERROR - Parse error. syntax error
  96. custom_variables_do_paginate: function(per_page){
  97. ^
  98.  
  99. ../../templates/settings.js:271: ERROR - Parse error. syntax error
  100. CUSTOM_VARS.sort(function(a,b){ return a.name < b.name ? -1 : 1 });
  101. ^
  102.  
  103. ../../templates/settings.js:321: ERROR - Parse error. syntax error
  104. },
  105. ^
  106.  
  107. ../../templates/settings.js:322: ERROR - Parse error. syntax error
  108. custom_variables_proper_name: function(name){
  109. ^
  110.  
  111. ../../templates/settings.js:326: ERROR - Parse error. invalid return
  112. return proper_name;
  113. ^
  114.  
  115. ../../templates/settings.js:327: ERROR - Parse error. syntax error
  116. },
  117. ^
  118.  
  119. ../../templates/settings.js:329: ERROR - Parse error. syntax error
  120. custom_variables_bind_actions: function(){
  121. ^
  122.  
  123. ../../templates/settings.js:413: ERROR - Parse error. syntax error
  124. },
  125. ^
  126.  
  127. ../../templates/settings.js:415: ERROR - Parse error. syntax error
  128. goal_management: function(){
  129. ^
  130.  
  131. ../../templates/settings.js:416: ERROR - Parse error. syntax error
  132. SETTINGS_CONTENT.html("<h2 style='margin: 20px 0 0 15px;'>Goal management</h2>");
  133. ^
  134.  
  135. ../../templates/settings.js:426: ERROR - Parse error. missing name after . operator
  136. $('<div class="settingsinputcontainer"><label for="goal_name">Default</label><input '+ (goal.default ? 'checked=true' : '') +' type="checkbox" name="settings_default_goal"/></div>').appendTo(goal_container);
  137. ^
  138.  
  139. ../../templates/settings.js:438: ERROR - Parse error. syntax error
  140. },
  141. ^
  142.  
  143. ../../templates/settings.js:440: ERROR - Parse error. syntax error
  144. goal_management_bind_actions : function(){
  145. ^
  146.  
  147. ../../templates/settings.js:541: ERROR - Parse error. syntax error
  148. }
  149.  
  150. 38 error(s), 0 warning(s)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement