Currently, I'm attempting to incorporate scroll-glue in order to automatically scroll to the bottom of a message.html page. My approach involved including the directive 'luegg.directives' in the following manner.
(function(){
'use strict';
var module = angular.module('app', ['onsen','luegg.directives']);
However, I encountered the following error:
Failed to instantiate module app due to: [$injector:modulerr] Failed to instantiate module luegg.directives due to: [$injector:nomod] Module 'luegg.directives' is not available! You either misspelled the module name or forgot to load it. If registering a module ensure that you specify the dependencies as the second argument.
I am seeking guidance on what might be causing this issue. Additionally, are there alternative methods for automatically scrolling to the bottom of a page?