1+ <!DOCTYPE html>
2+ < html lang ="en ">
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < title > A Small Growl Like Notification Plugin for jQuery</ title >
7+ < meta name ="description " content ="Gritter by jboesch. A small growl-like notification plugin for jQuery ">
8+ < meta name ="author " content ="jboesch ">
9+ < meta name ="robots " content ="index, follow ">
10+ <!-- Canonical URL -->
11+ < link rel ="canonical " href ="https://codehimblog.github.io/jquery-plugins/gritter-by-jboesch.html ">
12+ <!-- Favicon -->
13+ < link rel ="icon " href ="/favicon.ico " type ="image/png ">
14+ <!-- Bootstrap CSS -->
15+ < link href ="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css " rel ="stylesheet ">
16+ <!-- Bootstrap Icons -->
17+ < link href ="https://cdn.jsdelivr.net/npm/bootstrap-icons/font/bootstrap-icons.css " rel ="stylesheet ">
18+ < link rel ="stylesheet " href ="/css/styles.css ">
19+ </ head >
20+ < body >
21+ <!-- Navbar -->
22+ < nav class ="navbar navbar-expand-lg navbar-dark bg-dark fixed-top ">
23+ < div class ="container ">
24+ < a class ="navbar-brand " href ="https://codehimblog.github.io ">
25+ < i class ="bi bi-box-seam me-2 "> </ i > CodehimBlog
26+ </ a >
27+ < button class ="navbar-toggler " type ="button " data-bs-toggle ="collapse " data-bs-target ="#navbarNav " aria-controls ="navbarNav " aria-expanded ="false " aria-label ="Toggle navigation ">
28+ < span class ="navbar-toggler-icon "> </ span >
29+ </ button >
30+ < div class ="collapse navbar-collapse " id ="navbarNav ">
31+ < ul class ="navbar-nav ms-auto ">
32+ < li class ="nav-item ">
33+ < a class ="nav-link " href ="https://codehimblog.github.io/ "> < i class ="bi bi-house-door me-1 "> </ i > Home</ a >
34+ </ li >
35+ < li class ="nav-item ">
36+ < a class ="nav-link " href ="https://codehimblog.github.io/projects/ "> < i class ="bi bi-box me-1 "> </ i > Projects</ a >
37+ </ li >
38+ < li class ="nav-item ">
39+ < a class ="nav-link " href ="https://codehimblog.github.io/about.html "> < i class ="bi bi-book me-1 "> </ i > About</ a >
40+ </ li >
41+ < li class ="nav-item ">
42+ < a class ="nav-link " href ="https://codehimblog.github.io/contact.html "> < i class ="bi bi-envelope me-1 "> </ i > Contact</ a >
43+ </ li >
44+ </ ul >
45+ </ div >
46+ </ div >
47+ </ nav >
48+
49+ <!-- Breadcrumbs -->
50+ < div class ="container mt-4 breadcrumbs ">
51+ < nav aria-label ="breadcrumb ">
52+ < ol class ="breadcrumb mb-0 ">
53+ < li class ="breadcrumb-item "> < a href ="https://codehimblog.github.io/ "> Home</ a > </ li >
54+ < li class ="breadcrumb-item "> < a href ="https://codehimblog.github.io/jquery-plugins/ "> jQuery Plugins</ a > </ li >
55+ < li class ="breadcrumb-item active " aria-current ="page "> Gritter</ li >
56+ </ ol >
57+ </ nav >
58+ </ div >
59+
60+ <!-- Schema Markup for Breadcrumbs -->
61+ < script type ="application/ld+json ">
62+ {
63+ "@context" : "https://schema.org" ,
64+ "@type" : "BreadcrumbList" ,
65+ "itemListElement" : [
66+ {
67+ "@type" : "ListItem" ,
68+ "position" : 1 ,
69+ "name" : "Home" ,
70+ "item" : "https://codehimblog.github.io/"
71+ } ,
72+ {
73+ "@type" : "ListItem" ,
74+ "position" : 2 ,
75+ "name" : "jQuery Plugins" ,
76+ "item" : "https://codehimblog.github.io/jquery-plugins/"
77+ } ,
78+ {
79+ "@type" : "ListItem" ,
80+ "position" : 3 ,
81+ "name" : "Gritter" ,
82+ "item" : "https://codehimblog.github.io/projects/{{packageSlug}}"
83+ }
84+ ]
85+ }
86+ </ script >
87+ <!-- Main Content -->
88+ < div class ="container mt-3 ">
89+ < div class ="row ">
90+ <!-- Main Details -->
91+ < main class ="col-md-8 site-main p-0 ">
92+ < article >
93+ <!-- Project Name & Description -->
94+ < h1 id ="packageName "> Gritter</ h1 >
95+ < p id ="packageDescription " class ="text-muted "> A small growl-like notification plugin for jQuery</ p >
96+
97+
98+
99+ <!-- Statistics -->
100+ < div class ="stat-row d-flex justify-content-around align-items-center text-center mb-2 ">
101+ < div class ="stat-box d-flex align-items-center flex-column-mobile ">
102+ < i class ="bi bi-star-fill text-warning mb-2 "> </ i >
103+ < div >
104+ < span id ="stargazersCount " class ="stat-value "> 885</ span >
105+ < p class ="stat-label mb-0 "> Stars</ p >
106+ </ div >
107+ </ div >
108+
109+ < div class ="stat-box d-flex align-items-center flex-column-mobile ">
110+ < i class ="bi bi-box-arrow-in-down mb-2 "> </ i >
111+ < div >
112+ < span id ="repoSize " class ="stat-value "> 0.86 MB</ span >
113+ < p class ="stat-label mb-0 "> Size</ p >
114+ </ div >
115+ </ div >
116+
117+ < div class ="stat-box d-flex align-items-center flex-column-mobile ">
118+ < i class ="bi bi-arrow-repeat text-secondary mb-2 "> </ i >
119+ < div >
120+ < span id ="forksCount " class ="stat-value "> 229</ span >
121+ < p class ="stat-label mb-0 "> Forks</ p >
122+ </ div >
123+ </ div >
124+
125+ < div class ="stat-box d-flex align-items-center flex-column-mobile ">
126+ < i class ="bi bi-exclamation-circle text-danger mb-2 "> </ i >
127+ < div >
128+ < span id ="openIssuesCount " class ="stat-value "> 26</ span >
129+ < p class ="stat-label mb-0 "> Open Issues</ p >
130+ </ div >
131+ </ div >
132+ </ div >
133+
134+
135+ < div class ="ad-unit ad-apt ">
136+ < script async src ="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7089100907045419 "
137+ crossorigin ="anonymous "> </ script >
138+ <!-- CodehimBlog APT -->
139+ < ins class ="adsbygoogle "
140+ style ="display:block "
141+ data-ad-client ="ca-pub-7089100907045419 "
142+ data-ad-slot ="4990741913 "
143+ data-ad-format ="auto "
144+ data-full-width-responsive ="true "> </ ins >
145+ < script >
146+ ( adsbygoogle = window . adsbygoogle || [ ] ) . push ( { } ) ;
147+ </ script >
148+ </ div >
149+
150+ < div class ="row mb-4 ">
151+ <!-- Tabs (Left) -->
152+ < div class ="col-12 col-md-6 d-flex justify-content-start mb-3 mb-md-0 ">
153+ < ul class ="nav nav-tabs " id ="infoTabs " role ="tablist ">
154+ < li class ="nav-item " role ="presentation ">
155+ < button class ="nav-link active " id ="installation-tab " data-bs-toggle ="tab " data-bs-target ="#installation " type ="button " role ="tab " aria-controls ="installation " aria-selected ="true ">
156+ < i class ="bi bi-file-earmark-text "> </ i > Readme
157+ </ button >
158+ </ li >
159+ < li class ="nav-item " role ="presentation ">
160+ < button class ="nav-link " id ="changelog-tab " data-bs-toggle ="tab " data-bs-target ="#changelog " type ="button " role ="tab " aria-controls ="changelog " aria-selected ="false ">
161+ < i class ="bi bi-journal-text me-2 "> </ i > Changelog
162+ </ button >
163+ </ li >
164+ </ ul >
165+ </ div >
166+
167+ <!-- Action Buttons (Right) -->
168+ < div class ="col-12 col-md-6 d-flex align-items-center justify-content-end ">
169+ < a href ="https://github.com/jboesch/Gritter/archive/refs/heads/master.zip " class ="btn btn-primary me-2 action-btn " id ="downloadBtn ">
170+ < i class ="bi bi-cloud-download me-2 "> </ i > Download ZIP
171+ </ a >
172+ < a href ="https://github.com/jboesch/Gritter " target ="_blank " class ="btn btn-outline-secondary action-btn " id ="githubBtn ">
173+ < i class ="bi bi-github me-2 "> </ i > Fork on GitHub
174+ </ a >
175+ </ div >
176+ </ div >
177+ < div class ="tab-content mt-3 " id ="infoTabsContent ">
178+ < div class ="tab-pane fade show active " id ="installation " role ="tabpanel " aria-labelledby ="installation-tab ">
179+ < h1 > Gritter for jQuery</ h1 >
180+ < p > A small growl-like notification plugin for jQuery</ p >
181+ < ul >
182+ < li > < a href ="http://boedesign.com/blog/2009/07/11/growl-for-jquery-gritter/ "> http://boedesign.com/blog/2009/07/11/growl-for-jquery-gritter/</ a > </ li >
183+ </ ul >
184+ < h2 > Installation</ h2 >
185+ < pre > < code > $ bower install jquery.gritter</ code > </ pre >
186+ < h2 > Change Log</ h2 >
187+ < h3 > Changes in 1.7.4 (February 24, 2012)</ h3 >
188+ < ul >
189+ < li > Fixing bug where click event was being bound multiple times on hover. The result was the beforeClose callback being called multiple times. Thanks for commit aossowski!</ li >
190+ </ ul >
191+ < h3 > Changes in 1.7.3 (December 8, 2011)</ h3 >
192+ < ul >
193+ < li > Added $.gritter.options.class_name option</ li >
194+ < li > Added 'gritter-light' class_name option to use light messages instead of dark ones</ li >
195+ </ ul >
196+ < h3 > Changes in 1.7.2 (December 2, 2011)</ h3 >
197+ < ul >
198+ < li > Added option to return false on "before_open" callback to determine whether or not to show the gritter message (good for setting a max)</ li >
199+ </ ul >
200+ < h3 > Changes in 1.7.1 (March 29, 2011)</ h3 >
201+ < ul >
202+ < li > Dropped IE6 support</ li >
203+ < li > Added position option to global options (bottom-left, top-left, top-right, bottom-right)</ li >
204+ </ ul >
205+ < h3 > Changes in 1.7 (March 25, 2011)</ h3 >
206+ < ul >
207+ < li > Fixed 404 issue in the css when fetching '.' as an image</ li >
208+ < li > Added callback parameter in before_close and after_close callbacks to determine whether it was closed manually by clicking the (X)</ li >
209+ </ ul >
210+ < h3 > Changes in 1.6 (December1, 2009)</ h3 >
211+ < ul >
212+ < li > Commented code using JSDOC</ li >
213+ < li > Major code cleanup/re-write</ li >
214+ < li > Made it so when you hit the (X) close button, the notification slides up and vanishes instead of just vanishing</ li >
215+ < li > Added optional "class_name" option for $.gritter.add() to apply a class to a specific notification</ li >
216+ < li > Fixed IE7 issue pointed out by stoffel (< a href ="http://boedesign.com/blog/2009/07/11/growl-for-jquery-gritter/ "> http://boedesign.com/blog/2009/07/11/growl-for-jquery-gritter/</ a > ) </ li >
217+ </ ul >
218+ < h3 > Changes in 1.5 (October 21, 2009)</ h3 >
219+ < ul >
220+ < li > Renamed the global option parameters to make more sense</ li >
221+ < li > Made it so the global options are only being ran once instead of each $.gritter.add() call</ li >
222+ </ ul >
223+ < h3 > Changes in 1.4 (October 20, 2009)</ h3 >
224+ < ul >
225+ < li > Added callbacks (before_open, before_close, after_open, after_close) to the gritter notifications</ li >
226+ < li > Added callbacks (before_close, after_close) to the removeAll() function</ li >
227+ < li > Using 1 image for the CSS instead of 5 (Thanks to Ozum Eldogan)</ li >
228+ < li > Added option to over-ride gritter global options with $.extend</ li >
229+ </ ul >
230+ < h3 > Changes in 1.3 (August 1, 2009)</ h3 >
231+ < ul >
232+ < li > Fixed IE6 positioning bug</ li >
233+ </ ul >
234+ < h3 > Changes in 1.2 (July 13, 2009)</ h3 >
235+ < ul >
236+ < li > Fixed hover bug (pointed out by Beel & tXptr on the comments)</ li >
237+ </ ul >
238+ </ div >
239+
240+ < div class ="tab-pane fade " id ="changelog " role ="tabpanel " aria-labelledby ="changelog-tab ">
241+ < ul id ="changelogList ">
242+ No changelog available.
243+ </ ul >
244+ </ div >
245+
246+ </ div >
247+
248+ < div class ="tags mb-2 mt-2 ">
249+ < a href ="https://codehimblog.github.io/tag/package " class ="text-decoration-none ">
250+ < div class ="d-inline-flex align-items-center bg-light border rounded-pill px-3 py-1 me-2 mb-2 ">
251+ < i class ="bi bi-tag-fill me-2 "> </ i >
252+ < span > package</ span >
253+ </ div >
254+ </ a > < a href ="https://codehimblog.github.io/tag/gritter " class ="text-decoration-none ">
255+ < div class ="d-inline-flex align-items-center bg-light border rounded-pill px-3 py-1 me-2 mb-2 ">
256+ < i class ="bi bi-tag-fill me-2 "> </ i >
257+ < span > gritter</ span >
258+ </ div >
259+ </ a >
260+ </ div >
261+
262+ </ article >
263+
264+
265+ </ main >
266+ <!-- Sidebar -->
267+ < aside class ="col-md-4 p-0 ">
268+ < div class ="sidebar ">
269+ <!-- Owner Section -->
270+ < div class ="sidebar-item mb-4 ">
271+ < div class ="ad-unit ">
272+ < script async src ="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7089100907045419 "
273+ crossorigin ="anonymous "> </ script >
274+ <!-- CodehimBlog Sidebar -->
275+ < ins class ="adsbygoogle "
276+ style ="display:block "
277+ data-ad-client ="ca-pub-7089100907045419 "
278+ data-ad-slot ="8929986923 "
279+ data-ad-format ="auto "
280+ data-full-width-responsive ="true "> </ ins >
281+ < script >
282+ ( adsbygoogle = window . adsbygoogle || [ ] ) . push ( { } ) ;
283+ </ script >
284+ </ div >
285+ < div class ="d-flex align-items-center ">
286+ < img src ="https://avatars.githubusercontent.com/u/46987?v=4 " alt ="Owner Avatar " class ="rounded-circle me-2 owner-avatar ">
287+ < a href ="https://github.com/jboesch " target ="_blank " id ="ownerName " class ="sidebar-link "> jboesch</ a >
288+ </ div >
289+ </ div >
290+
291+ <!-- Metadata Section -->
292+ < div class ="sidebar-item mb-2 ">
293+ < div class ="metadata-item d-flex align-items-center ">
294+ < i class ="bi bi-calendar me-2 "> </ i >
295+ < strong > Created At:</ strong >
296+ < span id ="createdAt " class ="ms-1 "> October 20, 2009</ span >
297+ </ div >
298+ < div class ="metadata-item d-flex align-items-center mt-2 ">
299+ < i class ="bi bi-pencil-square me-2 "> </ i >
300+ < strong > Last Updated:</ strong >
301+ < span id ="updatedAt " class ="ms-1 "> November 26, 2024</ span >
302+ </ div >
303+ < div class ="metadata-item d-flex align-items-center mt-2 ">
304+ < i class ="bi bi-file-earmark-code me-2 "> </ i >
305+ < strong > Language:</ strong >
306+ < span id ="language " class ="ms-1 "> JavaScript</ span >
307+ </ div >
308+
309+ < div class ="metadata-item d-flex align-items-center mt-2 ">
310+ < i class ="bi bi-shield-check "> </ i >
311+ < strong > License:</ strong >
312+ < span id ="license " class ="ms-1 "> Unknown</ span >
313+ </ div >
314+ < a href ="http://boedesign.com/2009/07/11/growl-for-jquery-gritter/ " target ="_blank " class ="btn btn-outline-dark btn-sm " id ="homepageBtn ">
315+ < i class ="bi bi-house-door me-2 "> </ i > Visit Homepage
316+ </ a >
317+
318+ </ div >
319+
320+ < div class ="sidebar-item mb-2 ">
321+
322+ </ div >
323+
324+ < div class ="sidebar-item ">
325+ < h5 class ="sidebar-title "> Contributors</ h5 >
326+ < ul class ="p-0 " id ="contributorsList ">
327+ < ul class ="list-group list-group-flush " id ="contributorsList "> < li class ="list-group-item d-flex align-items-center contributor-item "> < img src ="https://avatars.githubusercontent.com/u/46987?v=4 " alt ="jboesch " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/jboesch " target ="_blank " class ="text-decoration-none fw-bold "> jboesch</ a > < p class ="mb-0 text-muted small "> 37 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item "> < img src ="https://avatars.githubusercontent.com/u/270528?v=4 " alt ="Thinkscape " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/Thinkscape " target ="_blank " class ="text-decoration-none fw-bold "> Thinkscape</ a > < p class ="mb-0 text-muted small "> 3 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item "> < img src ="https://avatars.githubusercontent.com/u/869?v=4 " alt ="peters " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/peters " target ="_blank " class ="text-decoration-none fw-bold "> peters</ a > < p class ="mb-0 text-muted small "> 3 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item "> < img src ="https://avatars.githubusercontent.com/u/328039?v=4 " alt ="ardydedase " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/ardydedase " target ="_blank " class ="text-decoration-none fw-bold "> ardydedase</ a > < p class ="mb-0 text-muted small "> 2 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item "> < img src ="https://avatars.githubusercontent.com/u/245518?v=4 " alt ="heitzke " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/heitzke " target ="_blank " class ="text-decoration-none fw-bold "> heitzke</ a > < p class ="mb-0 text-muted small "> 2 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item d-none "> < img src ="https://avatars.githubusercontent.com/u/2174845?v=4 " alt ="rvictory " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/rvictory " target ="_blank " class ="text-decoration-none fw-bold "> rvictory</ a > < p class ="mb-0 text-muted small "> 2 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item d-none "> < img src ="https://avatars.githubusercontent.com/u/290782?v=4 " alt ="tricknotes " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/tricknotes " target ="_blank " class ="text-decoration-none fw-bold "> tricknotes</ a > < p class ="mb-0 text-muted small "> 2 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item d-none "> < img src ="https://avatars.githubusercontent.com/u/1203019?v=4 " alt ="rrusaw " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/rrusaw " target ="_blank " class ="text-decoration-none fw-bold "> rrusaw</ a > < p class ="mb-0 text-muted small "> 2 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item d-none "> < img src ="https://avatars.githubusercontent.com/u/71852?v=4 " alt ="kmiyashiro " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/kmiyashiro " target ="_blank " class ="text-decoration-none fw-bold "> kmiyashiro</ a > < p class ="mb-0 text-muted small "> 1 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item d-none "> < img src ="https://avatars.githubusercontent.com/u/133128?v=4 " alt ="aossowski " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/aossowski " target ="_blank " class ="text-decoration-none fw-bold "> aossowski</ a > < p class ="mb-0 text-muted small "> 1 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item d-none "> < img src ="https://avatars.githubusercontent.com/u/186535?v=4 " alt ="jsloane " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/jsloane " target ="_blank " class ="text-decoration-none fw-bold "> jsloane</ a > < p class ="mb-0 text-muted small "> 1 contributions</ p > </ div > </ li > < li class ="list-group-item d-flex align-items-center contributor-item d-none "> < img src ="https://avatars.githubusercontent.com/u/16054?v=4 " alt ="plukevdh " class ="rounded-circle me-3 " style ="width: 40px; height: 40px; "> < div > < a href ="https://github.com/plukevdh " target ="_blank " class ="text-decoration-none fw-bold "> plukevdh</ a > < p class ="mb-0 text-muted small "> 1 contributions</ p > </ div > </ li > < li class ="list-group-item text-center "> < a href ="# " id ="toggleContributors " class ="d-block "> +7 more Contributors</ a > </ li > </ ul >
328+ </ ul >
329+
330+ </ div >
331+
332+ < div class ="ad-unit ">
333+ < script async src ="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-7089100907045419 "
334+ crossorigin ="anonymous "> </ script >
335+ <!-- CodehimBlog Skyscrapper -->
336+ < ins class ="adsbygoogle "
337+ style ="display:block "
338+ data-ad-client ="ca-pub-7089100907045419 "
339+ data-ad-slot ="7469565592 "
340+ data-ad-format ="auto "
341+ data-full-width-responsive ="true "> </ ins >
342+ < script >
343+ ( adsbygoogle = window . adsbygoogle || [ ] ) . push ( { } ) ;
344+ </ script >
345+ </ div >
346+
347+ </ div >
348+ </ aside >
349+ </ div >
350+ </ div >
351+ <!-- Footer -->
352+ < footer class ="bg-dark text-white text-center py-3 page-footer ">
353+ < div class ="container ">
354+ < p class ="mb-2 "> © 2024 CodehimBlog - Powered by GitHub</ p >
355+ < nav >
356+ < ul class ="list-inline mb-0 ">
357+ < li class ="list-inline-item ">
358+ < a href ="/privacy-policy.html " class ="footer-link "> Privacy Policy</ a >
359+ </ li >
360+ < li class ="list-inline-item ">
361+ < span class ="text-white "> |</ span >
362+ </ li >
363+ < li class ="list-inline-item ">
364+ < a href ="/terms-and-conditions.html " class ="footer-link "> Terms and Conditions</ a >
365+ </ li >
366+ </ ul >
367+ </ nav >
368+ </ div >
369+ </ footer >
370+ <!-- Bootstrap Bundle JS -->
371+ < script src ="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js "> </ script >
372+ < script src ="https://cdn.jsdelivr.net/gh/google/code-prettify@master/loader/run_prettify.js "> </ script >
373+ < script src ="/js/script.js "> </ script >
374+ <!-- Google tag (gtag.js) -->
375+ < script async src ="https://www.googletagmanager.com/gtag/js?id=G-FG2ZX76XGT "> </ script >
376+ < script >
377+ window . dataLayer = window . dataLayer || [ ] ;
378+ function gtag ( ) { dataLayer . push ( arguments ) ; }
379+ gtag ( 'js' , new Date ( ) ) ;
380+
381+ gtag ( 'config' , 'G-FG2ZX76XGT' ) ;
382+ </ script >
383+ </ body >
384+ </ html >
0 commit comments