PluginProbe
Parse.ly / 1.12
Parse.ly v1.12
3.24.1 3.24.0 3.23.7 3.23.6 3.23.5 3.23.4 3.23.3 3.16.0 3.16.1 3.16.2 3.16.3 3.16.4 3.17.0 3.18.0 3.18.1 3.19.0 3.19.1 3.19.2 3.19.3 3.2.0 3.2.1 3.20.0 3.20.1 3.20.2 3.20.3 All 105 releases
wp-parsely / parsely-admin-header.php

parsely-admin-header.php in Parse.ly 1.12, at parsely-admin-header.php

27 lines 1019 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <!-- wp-parsely -->
2 <style type="text/css">
3 #wp-parsely_version {color: #777; font-size: 12px; margin-left: 1em;}
4 .help-text {
5 width: 75%;
6 }
7 </style>
8 <script type="text/javascript">
9 (function($) {
10 $(document).ready(function onDOMReady() {
11 var apikey = $('#apikey').val();
12 var recrawlRequiredMessage = '<strong style="color: red">Important:' +
13 '</strong> changing this value on a site currently tracked with ' +
14 'Parse.ly will require reprocessing of your Parse.ly data. Once ' +
15 'you have changed this value, please contact ' +
16 '<a href="mailto:support@parsely.com?subject=Please reprocess ' +
17 apikey + '">support@parsely.com</a> to kick off reprocessing of ' +
18 'your data.';
19
20 $('<p class="description"></p>')
21 .appendTo("div.parsely-form-controls[data-requires-recrawl='true'] .help-text")
22 .html(recrawlRequiredMessage);
23 });
24 })(jQuery);
25 </script>
26 <!-- end wp-parsely -->
27