2014-02-27 45 views
4

我嘗試使用飛鏢聚合物中的內容標籤。 Polymer-Element顯示正確,但內容完全不顯示。如何在飛鏢中使用Polymer <content>標籤?

這是我的代碼:

<modal-dialog>This should be in the content-tag</modal-dialog> 

我使用:

<polymer-element name="modal-dialog" > 
    <link rel="stylesheet" href="packages/bootjack/css/bootstrap.css"> 

    <template> 

    <button on-click="{{show}}">jo</button> 
    <div id="modal" class="modal fade" tabindex="-1" role="dialog"> 
     <div class="modal-dialog"> 
     <div class="modal-content"> 
      <div class="modal-header"> 
      <button type="button" class="close" data-dismiss="modal">&times</button> 
      <h3 style="margin: 0">Bootjack</h3> 
      </div> 
      <div class="modal-body"> 
      <content></content> 
      </div> 
      <div class="modal-footer" style="margin: 0"> 
      <button class="btn btn-success" data-dismiss="modal" id="ok">OK</button> 
      </div> 
     </div> 
     </div> 
    </div> 
    </template> 
<script type="application/dart"> 
import 'package:polymer/polymer.dart'; 
import 'package:bootjack/bootjack.dart'; 
import 'dart:html'; 

@CustomTag('modal-dialog') 
class ModalDialog extends PolymerElement { 

    Modal modal; 

    ModalDialog.created() : super.created(){ 
    Modal.use(); 
    Transition.use(); 
    modal = Modal.wire(this.shadowRoot.querySelector("#modal")); 

    } 
    void show(){ 
    modal.show(); 
    } 
} 
</script>  
</polymer-element> 

然後我在index.html的實例
飛鏢編輯器版本1.2.0.release(STABLE )
Dart SDK版本1.2.0
OS X 10.8.5

感謝您的任何提示:)

回答

1

我想你的代碼。我刪除了CSS鏈接,內容顯示在正確的位置。

這可能是你遇到了同樣的錯誤,因爲我最近所做 CSS linked in entry page header moved into content by pub build

自己的風格標籤

<style> 
    * { 
    display: block; 
    border: solid 3px red; 
    } 
</style> 

,你會看到,CSS移入內容後添加這個CSS。 聚合物目前似乎對CSS有一些問題。

+1

爲什麼css鏈接不等同於內聯樣式聲明? –

+0

看到我更新的答案 –