Fullpage.js: Developer License for Angular 6

Created on 11 Sep 2018  路  3Comments  路  Source: alvarotrigo/fullPage.js

Having searched several times I've seen different variations on how to install the license key for AngularJS (4 and above). Most of them cite files that don't exist anymore with updated versions of fullpage.js or AngularJS (ex. angular-cli.json, jquery.fullpage.js etc.)

The main issues are a) where does the fullPage.js Commercial Developer License go and b) even using it on localhost, adding this to the angular.json file:

"node_modules/jquery/dist/jquery.min.js", "node_modules/fullpage.js/dist/fullpage.min.js", "node_modules/fullpage.js/LICENSE",

Under scripts in the .json results in an error:

Uncaught SyntaxError: Unexpected identifier
Which is pointing to the beginning of the license that reads: "GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007"

question

Most helpful comment

@tadkim not any official component yet. But it's on the process 馃槃

All 3 comments

If we are talking about fullpage.js 3. As detailed in the docs you should use the licenseKey option to place the license:

For example:

new fullpage({
     licenseKey: 'YOU_KEY_HERE'
});

You acquire the license key once you purchase the comercial license from here.

The LICENSE file from the repository is not required as long as you do not remove the credits comments on the JS and CSS files stating fullPage.js is under GPLv3 and linking to the site and repository.

Is fullpage.js available on Angular 6+?

@tadkim not any official component yet. But it's on the process 馃槃

Was this page helpful?
0 / 5 - 0 ratings