Changeset 717846
- Timestamp:
- 05/24/2013 03:07:18 PM (13 years ago)
- Location:
- conductrics-webactions/trunk
- Files:
-
- 3 edited
-
conductrics-webactions.php (modified) (1 diff)
-
js/agent-list-input.jquery.js (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
conductrics-webactions/trunk/conductrics-webactions.php
r712473 r717846 3 3 Plugin Name: Conductrics Web Actions 4 4 Description: Includes Conductrics Web Actions scripts in your pages, which makes it easy to test changes to your pages, track their success, and do dynamic targeting. 5 Version: 0.2. 55 Version: 0.2.6 6 6 Author: Conductrics 7 7 Author URI: http://conductrics.com -
conductrics-webactions/trunk/js/agent-list-input.jquery.js
r712473 r717846 8 8 selector: '.agent-code-list' 9 9 }, optionz); 10 refreshAgentList(); 10 if ( hasAdminAccountInfo() ) { 11 refreshAgentList(); 12 } else { 13 showMessage('<strong>Plugin not set up.</strong> Please go to the Conductrics Account tab under Settings > Conductrics Actions and provide your account details.'); 14 } 11 15 } 12 16 }; 17 18 showMessage = function(msg) { 19 console.log(msg); 20 $(options.selector).parent().html('<font color="#AA3333">' + msg + '</font>'); 21 }; 22 23 hasAdminAccountInfo = function() { 24 return options.account 25 && options.account.owner && options.account.owner.length > 5 26 && options.account.adminkey && options.account.adminkey.length > 5 27 && options.account.adminurl && options.account.adminurl.length > 5 && options.account.adminurl.indexOf('http') == 0 28 } 13 29 14 30 // Simple wrapper around $.ajax … … 52 68 53 69 if (callback) callback(); 70 } else { 71 showMessage('<strong>Could not retrieve your Conductrics agents.</strong> Please check the Conductrics Account info you provided when setting up this plugin, and check your Internet connection.'); 54 72 } 55 73 }); -
conductrics-webactions/trunk/readme.txt
r712473 r717846 61 61 == Changelog == 62 62 63 = 0.2.6 = 64 * Display a hint in wp-admin when Conductrics Account info has not been provided. 65 * Fixed a spelling error in the setup instructions. 66 63 67 = 0.2.5 = 64 68 * First publicly-available version. … … 66 70 == Upgrade Notice == 67 71 72 = 0.2.6 = 73 * This version simplifies the intial setup process. 74 68 75 = 0.2.5 = 69 76 First publicly-available version.
Note: See TracChangeset
for help on using the changeset viewer.