Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 598 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 598 Bytes

Scripts installation and debuging *

Each PLON script is a jQuery plugin that should be initialised separatly. To run them create js file (e.g.: custom.js) in assets/scripts/ and provide this code:

$(function() {

	'use strict';

	// First plugin
	$(someSelector).firstPluginName(firstOptions);

	// Second plugin
	$(anotherSelector).secondPluginName(secondOptions);

	// And so on...
});

This is only an example to show you how it works. Each script has it's own way of installation and options list.


[*] this documentation is in beta version