or
SCRIPT16389: Unspecified error.
kendo.all.min.js, line 20 character 6377
Works in Chrome.
require.config({ paths: { jquery: 'lib/jquery-1.7.2.min', kendo: 'lib/kendo.web.min', kendoCulture: 'lib/cultures/kendo.culture.es-MX.min', knockout: 'lib/knockout-2.1.0', knockout_kendo: 'lib/knockout-kendo.min', underscore: 'lib/underscore-min', json2: 'lib/json2', }});require([ 'jquery', 'kendo', 'kendoCulture', 'knockout', 'knockout_kendo', 'underscore', 'json2' ], function ( $, kendo, kendoCulture, ko, knockout_kendo, _, json2) { // Start of Main Function $(function () { kendo.culture("es-MX"); $("#tabstrip").kendoTabStrip({ animation:{ open:{ effects:"fadeIn" } } }); // knockout Bindings });});application.router.route( "/things/:thingId", function ( thingId ) { var store = application.managedContext.getEntityStore( "things" ); store.find( thingId ) // potentially async call which returns a promise to return a thing .done( function ( thing ) { application.kendoApplication.navigate( "views/thing-detail.html" ); application.views.thingDetailViewModel.setSelectedThing( thing ); });});