Angularjs plunker始终引用github脚本链接

Angularjs plunker始终引用github脚本链接,angularjs,plunker,Angularjs,Plunker,由于以下错误消息,我无法执行此plunker: 但我并不是从github及其本地引用accordion.js 我得到那个信息有什么错 Refused to execute script from 'https://github.com/angular-ui/bootstrap/blob/master/src/accordion/accordion.js' because its MIME type ('text/html') is not executable, and strict MIME

由于以下错误消息,我无法执行此plunker:

但我并不是从github及其本地引用accordion.js

我得到那个信息有什么错

Refused to execute script from 'https://github.com/angular-ui/bootstrap/blob/master/src/accordion/accordion.js' because its MIME type ('text/html') is not executable, and strict MIME type checking is enabled. run.plnkr.co/:1
Uncaught Error: [$injector:modulerr] Failed to instantiate module plunker due to:
Error: [$injector:modulerr] Failed to instantiate module ui.bootstrap.accordion due to:
Error: [$injector:nomod] Module 'ui.bootstrap.accordion' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
首先,您忘记了将引导js、jquery和ui引导tpls脚本添加到index.html 其次,您只需要ui.bootstrap依赖项

最后,这里是一个正在工作的plunker:

拒绝从中执行脚本,因为其MIME类型“text/html”不可执行,并且启用了严格的MIME类型检查。但我在哪里运行此github脚本?或者我是盲人。。。但是我在我的plunker中看不到这个代码!它位于index.html文件的头部部分。我使用accordio.js代替引导tpls文件,它完全有效,不需要jquery。但是感谢plunker的工作。您需要bootstrap TPL来实现“ui.bootstrap”依赖关系,因为您需要bootstrap手风琴,并且因为您使用bootstrap,所以您需要bootstrap.js,它需要jquery;我使用angularjs ui引导组件,该组件是在没有jquery的情况下编写的。请看:
var app = angular.module('plunker',['ui.bootstrap']);