Changeset 1978877
- Timestamp:
- 11/22/2018 03:01:43 PM (7 years ago)
- Location:
- instant-annotation/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (1 diff)
-
iasemantify.php (modified) (2 diffs)
-
includes/class-iasemantify.php (modified) (1 diff)
-
vendor/instantAnnotations.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
instant-annotation/trunk/README.txt
r1978866 r1978877 2 2 Contributors: semantify.it 3 3 Donate link: author uri 4 Tags: comments, spam4 Tags: SEO, annotations, schema.org, semantify 5 5 Requires at least: 3.0.1 6 6 Tested up to: 5.9.8 -
instant-annotation/trunk/iasemantify.php
r1978866 r1978877 16 16 * Plugin Name: Instant Annotation 17 17 * Description: Deploy your annotations from semantify.it to your wordpress website with an easy interface. 18 * Version: 2.2. 218 * Version: 2.2.3 19 19 * Author: semantify.it 20 20 * Author URI: www.semantify.it … … 30 30 } 31 31 32 define( 'IASEMANTIFY_PLUGIN_NAME_VERSION', '2.2. 2' );32 define( 'IASEMANTIFY_PLUGIN_NAME_VERSION', '2.2.3' ); 33 33 34 34 /** -
instant-annotation/trunk/includes/class-iasemantify.php
r1978866 r1978877 71 71 $this->version = IASEMANTIFY_PLUGIN_NAME_VERSION; 72 72 } else { 73 $this->version = '2.2. 2';73 $this->version = '2.2.3'; 74 74 } 75 75 $this->plugin_name = 'iasemantify'; -
instant-annotation/trunk/vendor/instantAnnotations.js
r1978866 r1978877 881 881 } 882 882 883 function getDesc(propertyName,fullPath) { 884 if(sdoProperties[propertyName]){ 885 return stripHtml(fullPath+':\n'+sdoProperties[propertyName]["description"]); 886 }else{ 887 return stripHtml(fullPath+':\n'+'Sorry, no description available!'); 888 } 883 function getDesc(propertyName) { 884 return iasemantify_sdoProperties[propertyName] 885 ? stripHtml(iasemantify_sdoProperties[propertyName]["description"]) 886 : "No description available"; 889 887 } 890 888
Note: See TracChangeset
for help on using the changeset viewer.