Changeset 1706453
- Timestamp:
- 08/01/2017 04:24:28 PM (9 years ago)
- File:
-
- 1 edited
-
trustedsite-reviews/trunk/js/overview.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trustedsite-reviews/trunk/js/overview.js
r1703942 r1706453 18 18 var success = data['success']; 19 19 if(success === 0){ 20 jQuery("#manage").hide(); 21 jQuery("#settings").hide(); 22 23 jQuery("#pitch").show(); 24 jQuery("#activation").show(); 20 showActivation(); 25 21 }else{ 26 22 siteId = data['site_id']; … … 41 37 }, 500); 42 38 } 39 }).fail(function() { 40 showActivation(); 43 41 }); 42 } 43 44 function showActivation() { 45 jQuery("#manage").hide(); 46 jQuery("#settings").hide(); 47 jQuery("#pitch").show(); 48 jQuery("#activation").show(); 44 49 } 45 50
Note: See TracChangeset
for help on using the changeset viewer.