popcorntime

https://popcorntime.io/ http://www.webupd8.org/2014/05/install-popcorn-time-in-ubuntu-or.html

2014-12-30 · 1 min · 2 words · Me

drupal bootstrap i ckeditor removing

use this in drupal bootstrap theme ckeditor 4, usually remove check follow https://www.drupal.org/node/2369415 https://www.drupal.org/node/1908696 this way is ok, on site/all/modules/ckeditor/ckeditor.config.js put config.protectedSource.push( /<i[^>]*></i>/g ); in CKEDITOR.editorConfig = function(config) { OOXXOO } then ckeditor can put on source mode, but can not show on edit, change source again, code not remove. so save, then show on page…… I think it …ok just try

2014-12-07 · 1 min · 62 words · Me

LANMP 指的是 Linux + Apache + Nginx + MySQL + PHP

https://github.com/wangyan/lanmp

2014-12-05 · 1 min · word · Me

druapl 有興趣的model

http://www.drupalla.com/project/ http://www.drupalla.com/project/transliteration 上傳時的檔名非英數問題 http://www.drupalla.com/project/menu_block它可以很轻松的实现菜单分离,通过配置,就完全可以实现学员把Drupal主菜单的子菜单项下面的菜单项,显示到左边栏 http://www.drupalla.com/project/l10n_update这个模块可以自动下载并更新你安装的模块的翻译文件,省的你一个一个去下载导入了 http://www.drupalla.com/project/lightbox2 图片或相片时会跳出一个对话框 http://www.drupalla.com/project/webform 除了会寄送一封Email到指定信箱外 ======== https://www.drupal.org/project/ajaxblocks 可以用ajax 載入 block

2014-12-05 · 1 min · 14 words · Me

[轉][Javascript] 自定義Google地圖標誌及參數

http://hsw00.com/x2/forum.php?mod=viewthread&tid=5478 <div id="vat_canvas" style="width:100%;height:100%;"></div> <script type="text/javascript"> <!--// var script = document.createElement('script') ; script.type = 'text/javascript' ; script.src = 'https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false&' + 'callback=initialize&' + 'language=zh-TW' ; document.body.appendChild(script) ; var map = null ; var geoCoder = null ; var hide_address = '0' ; function initialize() { var latlng = new google.maps.LatLng(25.033663, 121.564644) ; var mapOptions = { zoom : 16 , panControl : false , zoomControl : true , mapTypeControl : true , scaleControl : true , streetViewControl : true , overviewMapControl : true , rotateControl : true , center : latlng }; map = new google.maps.Map(document.getElementById('vat_canvas'), mapOptions) ; var html = '<div style="width:212px;height:55px;">' + '<font color="red">性感小野貓股份有限公司</font><BR>' + '<font color="green">統編:12345678</font><BR>' + '<font color="blue">地址:台北101性感路野貓巷520號</font></div>' ; var infowindow = new google.maps.InfoWindow({ content : html }); var marker = new google.maps.Marker({ map : map , position : latlng , title : '性感小野貓股份有限公司' }); infowindow.open(map,marker) ; } //--> </script> var latlng = new google.maps.LatLng(25.033663, 121.564644) ; 須調整裡面的經緯度,可利用Google地圖直接查你要標誌位置的經緯度然後填入. zoom : 16 , 這數值為地圖的縮放程度,依照需求自己做調整吧. var html = '<div style="width:212px;height:55px;">' + '<font color="red">性感小野貓股份有限公司</font><BR>' + '<font color="green">統編:12345678</font><BR>' + '<font color="blue">地址:台北101性感路野貓巷520號</font></div>' ; 調整自定義標誌的框架寬及高,內容文字跟文字顏色等,視需求自行調整. 4. title : ‘性感小野貓股份有限公司’ 這是滑鼠移到標誌時會顯示的名稱,視需求自行調整吧. ...

2014-12-04 · 1 min · 177 words · Me