LLMS_View_Manager::scripts()

Enqueue Scripts.


Return Return

(void)


Top ↑

Source Source

File: includes/class.llms.view.manager.php

	public function scripts() {

		// If it's self we don't need anything fancy going on here.
		if ( 'self' === $this->get_view() ) {
			return;
		}

		wp_enqueue_script( 'llms-view-manager', LLMS_PLUGIN_URL . '/assets/js/llms-view-manager' . LLMS_ASSETS_SUFFIX . '.js', array( 'jquery' ), llms()->version, true );
		wp_add_inline_script( 'llms-view-manager', $this->get_inline_script(), 'after' );

	}


Top ↑

Changelog Changelog

Changelog
Version Description
3.7.0
3.35.0 Declare asset version.
3.17.8 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.