Changeset 504103
- Timestamp:
- 02/13/2012 03:33:59 AM (14 years ago)
- Location:
- indeed-api
- Files:
-
- 4 edited
-
tags/0.4/indeed-api.php (modified) (1 diff)
-
tags/0.4/indeedstyle.html (modified) (1 diff)
-
trunk/indeed-api.php (modified) (1 diff)
-
trunk/indeedstyle.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
indeed-api/tags/0.4/indeed-api.php
r504055 r504103 92 92 $apiview .= 'var wpajaxurl = "'.admin_url('admin-ajax.php').'";'."\n"; 93 93 $apiview .= 'var wpsiteurl = "'.get_option('siteurl').'";'."\n"; 94 if( $autosearch ) $apiview .= 'var autosearch = true;'."\n";94 $apiview .= 'var autosearch = ' . ($autosearch ? 'true' : 'false') . ";\n"; 95 95 $apiview .= "</script>\n"; 96 96 -
indeed-api/tags/0.4/indeedstyle.html
r504055 r504103 52 52 53 53 .indeedresult { 54 display:inline-block; 54 float:left; 55 clear:left; 55 56 width:100%; 56 57 background:#eee; -
indeed-api/trunk/indeed-api.php
r504055 r504103 92 92 $apiview .= 'var wpajaxurl = "'.admin_url('admin-ajax.php').'";'."\n"; 93 93 $apiview .= 'var wpsiteurl = "'.get_option('siteurl').'";'."\n"; 94 if( $autosearch ) $apiview .= 'var autosearch = true;'."\n";94 $apiview .= 'var autosearch = ' . ($autosearch ? 'true' : 'false') . ";\n"; 95 95 $apiview .= "</script>\n"; 96 96 -
indeed-api/trunk/indeedstyle.html
r504055 r504103 52 52 53 53 .indeedresult { 54 display:inline-block; 54 float:left; 55 clear:left; 55 56 width:100%; 56 57 background:#eee;
Note: See TracChangeset
for help on using the changeset viewer.