I'm trying to set up a Kendo UI application environment based on JSPM using the instructions in this article:
http://developer.telerik.com/featured/choose-es6-modules-today/
The only place I deviate from that article is that I want to install Kendo UI Pro, not the free version. There is documentation about install Kendo UI Pro using Bowser. See here and here:
http://docs.telerik.com/kendo-ui/install/bower
http://www.telerik.com/forums/install-kendo-ui-professional-bower-package
So I went ahead and ran these commands:
sudo npm install jspm-bower-endpoint
sudo jspm registry create bower jspm-bower-endpoint
sudo jspm install kendo-ui=bower:https://bower.telerik.com/bower-kendo-ui.git
The commands seemed to complete successfully. But then when I run my "serveit" Browsersync page, I get this error in the Chrome browser:
XMLHttpRequest cannot load bower:https://bower.telerik.com/bower-kendo-ui.git@2015.2.813.js. Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, https, chrome-extension-resource.
How do i get this to work? Thanks.