Page Index Toggle Pages: 1 ReplyAdd Poll Send Topic
Normal Topic AJS.js (Read 1746 times)
 
Paste Member Name in Quick Reply Box XTC
Global Moderator
*****
Offline


YaBB 2.6.0/1/11 Mods

Posts: 174
Location: @ustria
Joined: Feb 12th, 2014
Gender: Male
Mood: Freaky
Zodiac sign: Aquarius
AJS.js
Sep 13th, 2014 at 7:08pm
Mark & QuoteQuote  
Hello

When i look here the html Source code .....

Code (HTML)
Select All
<head>
 <!-- YaBB 2.6.1. $Revision: 1560 $ -->
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
     <title>YaBB Support &amp; Mods - YaBB Bugs</title>
     <link rel="stylesheet" href="http://yabbforumsoftware.com/yabbfiles/Templates/Forum/default.css" type="text/css" />
 <link rel="stylesheet" href="http://yabbforumsoftware.com/yabbfiles/shjs/styles/sh_style.css" type="text/css" />
 <link href="http://yabbforumsoftware.com/yabbfiles/greybox/gb_styles.css" rel="stylesheet" type="text/css" />
     <link rel="alternate" type="application/rss+xml" title="RSS feed for this board" href="http://yabbforumsoftware.com/cgi-bin/yabb2/YaBB.pl?action=RSSboard;board=bugs_1" /><link rel="stylesheet" href="http://yabbforumsoftware.com/yabbfiles/googiespell/googiespell.css" type="text/css" />

 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/AJS.js"></script>;
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/googiespell/googiespell.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/googiespell/cookiesupport.js"></script>
     <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/YaBB.js"></script>
     <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/cache.js"></script>
     <script type="text/javascript">

 var markallreadlang = 'Marking all Topics as Read';
 var markfinishedlang = 'Complete';
     function txtInFields(thefield, defaulttxt) {
         if (thefield.value == defaulttxt) thefield.value = "";
         else { if (thefield.value === "") thefield.value = defaulttxt; }
     }
     function selectAllCode(thefield) {
         var elem = document.getElementById('code' + thefield);
         if (document.selection) {
             document.selection.empty();
             var txt = document.body.createTextRange();
             txt.moveToElementText(elem);
             txt.select();
         }
         else {
             window.getSelection().removeAllRanges();
             txt = document.createRange();
             txt.setStartBefore(elem);
             txt.setEndAfter(elem);
             window.getSelection().addRange(txt);
         }
     }


     var imagedir = "http://yabbforumsoftware.com/yabbfiles/Templates/Forum/default";
     function toTop(scrpoint) {
         window.scrollTo(0,scrpoint);
     }
 //        if (top.location != self.location) {
 //            top.location = self.location.href
 //        }
     </script>

 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/shjs/sh_main.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/shjs/sh_cpp.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/shjs/sh_css.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/shjs/sh_html.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/shjs/sh_java.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/shjs/sh_javascript.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/shjs/sh_pascal.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/shjs/sh_perl.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/shjs/sh_php.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/shjs/sh_sql.js"></script>


 <script type="text/javascript">
     var GB_ROOT_DIR = "http://yabbforumsoftware.com/yabbfiles/greybox/";
 </script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/AJS.js"></script>;
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/AJS_fx.js"></script>
 <script type="text/javascript" src="http://yabbforumsoftware.com/yabbfiles/greybox/gb_scripts.js"></script>

 </head> 


..... is displayed twice.
  

Back to top
 
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2234
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: AJS.js
Reply #1 - Sep 13th, 2014 at 7:11pm
Mark & QuoteQuote  
Thanks - I'll run down where it's being repeated.
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box Dandello
Forum Administrator
YaBB Modder
*****
Offline


I love YaBB 2.7!

Posts: 2234
Location: The Land of YaBB
Joined: Feb 12th, 2014
Gender: Female
Mood: Annoyed
Zodiac sign: Virgo
Re: AJS.js
Reply #2 - Sep 13th, 2014 at 7:45pm
Mark & QuoteQuote  
Okay - Found it - the snippet of code you have was from the Display screen with quick posts enabled,  right?

Both Greybox and Googiespell use AJS.js. Just added a fix so when GoogieSpell is turned on it will load the file only if greybox isn't turned on.
  

Perfection is not possible. Excellence, however, is excellent.
Back to top
WWW  
IP Logged
 
Paste Member Name in Quick Reply Box XTC
Global Moderator
*****
Offline


YaBB 2.6.0/1/11 Mods

Posts: 174
Location: @ustria
Joined: Feb 12th, 2014
Gender: Male
Mood: Freaky
Zodiac sign: Aquarius
Re: AJS.js
Reply #3 - Sep 13th, 2014 at 8:19pm
Mark & QuoteQuote  
Hello

Dandello wrote on Sep 13th, 2014 at 7:45pm:
Okay - Found it - the snippet of code you have was from the Display screen with quick posts enabled,  right?

think so  Huh Smiley

Quote:
Both Greybox and Googiespell use AJS.js. Just added a fix so when GoogieSpell is turned on it will load the file only if greybox isn't turned on.

Ok ...  Smiley

lg XTC
  

Back to top
 
IP Logged
 
Page Index Toggle Pages: 1
ReplyAdd Poll Send Topic
Bookmarks: del.icio.us Digg Facebook Google LinkedIn reddit Twitter Yahoo
AJS.js

Please type the characters exactly as they appear in the image,
without the first 2 and last 2 characters.
The characters must be typed in the same order,
and they are case-sensitive.
Open Preview Preview

You can resize the textbox by dragging the right or bottom border.
Off Topic Comment Insert Spoiler
Insert Hyperlink Insert FTP Link Insert Image Insert E-mail Insert Media Insert Table Insert Table Row Insert Table Column Insert Horizontal Rule Insert Teletype Insert Code Insert Quote Edited Superscript Subscript Insert List /me - my name Insert Marquee Insert Timestamp No Parse
Bold Italicized Underline Insert Strikethrough Highlight
                       
Change Text Color
Insert Preformatted Text Left Align Centered Right Align
resize_wb
resize_hb







Max 5000 characters. Remaining characters:
Text size: %
More Smilies
View All Smilies
Collapse additional features Collapse/Expand additional features Smiley Wink Cheesy Grin Angry Sad Shocked Cool Huh Roll Eyes Tongue Embarrassed Lips Sealed Undecided Kiss Cry