1
+ /******/ ( ( ) => { // webpackBootstrap
2
+ /******/ var __webpack_modules__ = ( {
3
+
4
+ /***/ "./resources/js/app.js" :
5
+ /*!*****************************!*\
6
+ !*** ./resources/js/app.js ***!
7
+ \*****************************/
8
+ /***/ ( ( ) => {
9
+
10
+ var navbar = document . getElementsByTagName ( 'nav' ) [ 0 ] ;
11
+ var top = navbar . offsetTop ;
12
+ function stickynavbar ( ) {
13
+ if ( window . scrollY >= top ) {
14
+ navbar . classList . add ( 'sticky' ) ;
15
+ } else {
16
+ navbar . classList . remove ( 'sticky' ) ;
17
+ }
18
+ }
19
+ window . addEventListener ( 'scroll' , stickynavbar ) ;
20
+
21
+ /***/ } ) ,
22
+
23
+ /***/ "./resources/css/app.css" :
24
+ /*!*******************************!*\
25
+ !*** ./resources/css/app.css ***!
26
+ \*******************************/
27
+ /***/ ( ( __unused_webpack_module , __webpack_exports__ , __webpack_require__ ) => {
28
+
29
+ "use strict" ;
30
+ __webpack_require__ . r ( __webpack_exports__ ) ;
31
+ // extracted by mini-css-extract-plugin
32
+
33
+
34
+ /***/ } )
35
+
36
+ /******/ } ) ;
37
+ /************************************************************************/
38
+ /******/ // The module cache
39
+ /******/ var __webpack_module_cache__ = { } ;
40
+ /******/
41
+ /******/ // The require function
42
+ /******/ function __webpack_require__ ( moduleId ) {
43
+ /******/ // Check if module is in cache
44
+ /******/ var cachedModule = __webpack_module_cache__ [ moduleId ] ;
45
+ /******/ if ( cachedModule !== undefined ) {
46
+ /******/ return cachedModule . exports ;
47
+ /******/ }
48
+ /******/ // Create a new module (and put it into the cache)
49
+ /******/ var module = __webpack_module_cache__ [ moduleId ] = {
50
+ /******/ // no module.id needed
51
+ /******/ // no module.loaded needed
52
+ /******/ exports : { }
53
+ /******/ } ;
54
+ /******/
55
+ /******/ // Execute the module function
56
+ /******/ __webpack_modules__ [ moduleId ] ( module , module . exports , __webpack_require__ ) ;
57
+ /******/
58
+ /******/ // Return the exports of the module
59
+ /******/ return module . exports ;
60
+ /******/ }
61
+ /******/
62
+ /******/ // expose the modules object (__webpack_modules__)
63
+ /******/ __webpack_require__ . m = __webpack_modules__ ;
64
+ /******/
65
+ /************************************************************************/
66
+ /******/ /* webpack/runtime/chunk loaded */
67
+ /******/ ( ( ) => {
68
+ /******/ var deferred = [ ] ;
69
+ /******/ __webpack_require__ . O = ( result , chunkIds , fn , priority ) => {
70
+ /******/ if ( chunkIds ) {
71
+ /******/ priority = priority || 0 ;
72
+ /******/ for ( var i = deferred . length ; i > 0 && deferred [ i - 1 ] [ 2 ] > priority ; i -- ) deferred [ i ] = deferred [ i - 1 ] ;
73
+ /******/ deferred [ i ] = [ chunkIds , fn , priority ] ;
74
+ /******/ return ;
75
+ /******/ }
76
+ /******/ var notFulfilled = Infinity ;
77
+ /******/ for ( var i = 0 ; i < deferred . length ; i ++ ) {
78
+ /******/ var [ chunkIds , fn , priority ] = deferred [ i ] ;
79
+ /******/ var fulfilled = true ;
80
+ /******/ for ( var j = 0 ; j < chunkIds . length ; j ++ ) {
81
+ /******/ if ( ( priority & 1 === 0 || notFulfilled >= priority ) && Object . keys ( __webpack_require__ . O ) . every ( ( key ) => ( __webpack_require__ . O [ key ] ( chunkIds [ j ] ) ) ) ) {
82
+ /******/ chunkIds . splice ( j -- , 1 ) ;
83
+ /******/ } else {
84
+ /******/ fulfilled = false ;
85
+ /******/ if ( priority < notFulfilled ) notFulfilled = priority ;
86
+ /******/ }
87
+ /******/ }
88
+ /******/ if ( fulfilled ) {
89
+ /******/ deferred . splice ( i -- , 1 )
90
+ /******/ var r = fn ( ) ;
91
+ /******/ if ( r !== undefined ) result = r ;
92
+ /******/ }
93
+ /******/ }
94
+ /******/ return result ;
95
+ /******/ } ;
96
+ /******/ } ) ( ) ;
97
+ /******/
98
+ /******/ /* webpack/runtime/hasOwnProperty shorthand */
99
+ /******/ ( ( ) => {
100
+ /******/ __webpack_require__ . o = ( obj , prop ) => ( Object . prototype . hasOwnProperty . call ( obj , prop ) )
101
+ /******/ } ) ( ) ;
102
+ /******/
103
+ /******/ /* webpack/runtime/make namespace object */
104
+ /******/ ( ( ) => {
105
+ /******/ // define __esModule on exports
106
+ /******/ __webpack_require__ . r = ( exports ) => {
107
+ /******/ if ( typeof Symbol !== 'undefined' && Symbol . toStringTag ) {
108
+ /******/ Object . defineProperty ( exports , Symbol . toStringTag , { value : 'Module' } ) ;
109
+ /******/ }
110
+ /******/ Object . defineProperty ( exports , '__esModule' , { value : true } ) ;
111
+ /******/ } ;
112
+ /******/ } ) ( ) ;
113
+ /******/
114
+ /******/ /* webpack/runtime/jsonp chunk loading */
115
+ /******/ ( ( ) => {
116
+ /******/ // no baseURI
117
+ /******/
118
+ /******/ // object to store loaded and loading chunks
119
+ /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
120
+ /******/ // [resolve, reject, Promise] = chunk loading, 0 = chunk loaded
121
+ /******/ var installedChunks = {
122
+ /******/ "/js/app" : 0 ,
123
+ /******/ "css/app" : 0
124
+ /******/ } ;
125
+ /******/
126
+ /******/ // no chunk on demand loading
127
+ /******/
128
+ /******/ // no prefetching
129
+ /******/
130
+ /******/ // no preloaded
131
+ /******/
132
+ /******/ // no HMR
133
+ /******/
134
+ /******/ // no HMR manifest
135
+ /******/
136
+ /******/ __webpack_require__ . O . j = ( chunkId ) => ( installedChunks [ chunkId ] === 0 ) ;
137
+ /******/
138
+ /******/ // install a JSONP callback for chunk loading
139
+ /******/ var webpackJsonpCallback = ( parentChunkLoadingFunction , data ) => {
140
+ /******/ var [ chunkIds , moreModules , runtime ] = data ;
141
+ /******/ // add "moreModules" to the modules object,
142
+ /******/ // then flag all "chunkIds" as loaded and fire callback
143
+ /******/ var moduleId , chunkId , i = 0 ;
144
+ /******/ if ( chunkIds . some ( ( id ) => ( installedChunks [ id ] !== 0 ) ) ) {
145
+ /******/ for ( moduleId in moreModules ) {
146
+ /******/ if ( __webpack_require__ . o ( moreModules , moduleId ) ) {
147
+ /******/ __webpack_require__ . m [ moduleId ] = moreModules [ moduleId ] ;
148
+ /******/ }
149
+ /******/ }
150
+ /******/ if ( runtime ) var result = runtime ( __webpack_require__ ) ;
151
+ /******/ }
152
+ /******/ if ( parentChunkLoadingFunction ) parentChunkLoadingFunction ( data ) ;
153
+ /******/ for ( ; i < chunkIds . length ; i ++ ) {
154
+ /******/ chunkId = chunkIds [ i ] ;
155
+ /******/ if ( __webpack_require__ . o ( installedChunks , chunkId ) && installedChunks [ chunkId ] ) {
156
+ /******/ installedChunks [ chunkId ] [ 0 ] ( ) ;
157
+ /******/ }
158
+ /******/ installedChunks [ chunkId ] = 0 ;
159
+ /******/ }
160
+ /******/ return __webpack_require__ . O ( result ) ;
161
+ /******/ }
162
+ /******/
163
+ /******/ var chunkLoadingGlobal = self [ "webpackChunklaravel_pixels" ] = self [ "webpackChunklaravel_pixels" ] || [ ] ;
164
+ /******/ chunkLoadingGlobal . forEach ( webpackJsonpCallback . bind ( null , 0 ) ) ;
165
+ /******/ chunkLoadingGlobal . push = webpackJsonpCallback . bind ( null , chunkLoadingGlobal . push . bind ( chunkLoadingGlobal ) ) ;
166
+ /******/ } ) ( ) ;
167
+ /******/
168
+ /************************************************************************/
169
+ /******/
170
+ /******/ // startup
171
+ /******/ // Load entry module and return exports
172
+ /******/ // This entry module depends on other loaded chunks and execution need to be delayed
173
+ /******/ __webpack_require__ . O ( undefined , [ "css/app" ] , ( ) => ( __webpack_require__ ( "./resources/js/app.js" ) ) )
174
+ /******/ var __webpack_exports__ = __webpack_require__ . O ( undefined , [ "css/app" ] , ( ) => ( __webpack_require__ ( "./resources/css/app.css" ) ) )
175
+ /******/ __webpack_exports__ = __webpack_require__ . O ( __webpack_exports__ ) ;
176
+ /******/
177
+ /******/ } ) ( )
178
+ ;
0 commit comments