Last active
August 29, 2015 14:06
-
-
Save ralfbecher/1f9f71d0e3694b19199a to your computer and use it in GitHub Desktop.
QlikView Extension Load JavaScript via RequireJS to solve UTF-8 issue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// thanks to Stefan Walther for giving a hint an this matter: https://github.com/stefanwalther | |
Qv.LoadExtensionScripts([_path + 'js/require.js'], | |
function () { | |
require([_path + 'js/d3.v3', _path + 'js/nv.d3.min', _path + 'js/interactiveLayer', _path + 'js/utils'], | |
function () { | |
Qv.AddExtension(_extension, | |
function () { | |
// render it.. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment