- Код: Выделить всё
<script type="text/javascript" src="https://www.google.com/jsapi">
Подскажите пожалуйста как сделать в этом коде:
- Код: Выделить всё
public static $bootstrapUrl='http://www.google.com/jsapi';
/**
* Renders the jsapi script file.
* @param string $apiKey the API key. Null if you do not have a key.
* @return string the script tag that loads Google jsapi.
*/
public static function init($apiKey=null)
{
if($apiKey===null)
return CHtml::scriptFile(self::$bootstrapUrl);
else
return CHtml::scriptFile(self::$bootstrapUrl.'?key='.$apiKey);
}
чтобы в итоге получилось
- Код: Выделить всё
<script async defer type="text/javascript" src="https://www.google.com/jsapi">