Changeset - e271a8766951
kallithea/templates/admin/admin_log.html
Show inline comments
 
@@ -38,7 +38,7 @@
 
</table>
 

	
 
<script type="text/javascript">
 
  YUE.onDOMReady(function(){
 
  $(document).ready(function(){
 
    YUE.delegate("user_log","click",function(e, matchedEl, container){
 
        ypjax(e.target.href,"user_log",function(){
 
            show_more_event();
kallithea/templates/admin/repo_groups/repo_group_edit_perms.html
Show inline comments
 
@@ -128,7 +128,7 @@ ${h.end_form()}
 
        }
 
    };
 

	
 
    YUE.onDOMReady(function () {
 
    $(document).ready(function () {
 
        if (!YUD.hasClass('perm_new_member_name', 'error')) {
 
            YUD.setStyle('add_perm_input', 'display', 'none');
 
        }
kallithea/templates/admin/repos/repo_edit_permissions.html
Show inline comments
 
@@ -114,7 +114,7 @@ ${h.end_form()}
 
        }
 
    };
 

	
 
    YUE.onDOMReady(function () {
 
    $(document).ready(function () {
 
        if (!YUD.hasClass('perm_new_member_name', 'error')) {
 
            YUD.setStyle('add_perm_input', 'display', 'none');
 
        }
kallithea/templates/admin/user_groups/user_group_edit_perms.html
Show inline comments
 
@@ -117,7 +117,7 @@ ${h.end_form()}
 
        }
 
    };
 

	
 
    YUE.onDOMReady(function () {
 
    $(document).ready(function () {
 
        if (!YUD.hasClass('perm_new_member_name', 'error')) {
 
            YUD.setStyle('add_perm_input', 'display', 'none');
 
        }
kallithea/templates/base/default_perms_box.html
Show inline comments
 
@@ -70,8 +70,7 @@ ${h.end_form()}
 

	
 
## JS
 
<script>
 
YUE.onDOMReady(function(e){
 

	
 
$(document).ready(function(e){
 
    var show_custom_perms = function(inherit_default){
 
        if(inherit_default){
 
            YUD.setStyle('inherit_overlay', 'display', 'none');
kallithea/templates/base/root.html
Show inline comments
 
@@ -106,7 +106,7 @@
 
                }
 
            })(window);
 

	
 
            YUE.onDOMReady(function(){
 
            $(document).ready(function(){
 
              tooltip_activate();
 
              show_more_event();
 
              show_changeset_tooltip();
kallithea/templates/changelog/changelog.html
Show inline comments
 
@@ -167,8 +167,7 @@ ${self.repo_context_bar('changelog', c.f
 

	
 
        <script type="text/javascript" src="${h.url('/js/graph.js')}"></script>
 
        <script type="text/javascript">
 
            YAHOO.util.Event.onDOMReady(function(){
 

	
 
            $(document).ready(function(){
 
                //Monitor range checkboxes and build a link to changesets ranges
 
                var checkboxes = YUD.getElementsByClassName('changeset_range');
 
                // register extra routes needed for this view
 
@@ -232,7 +231,7 @@ ${self.repo_context_bar('changelog', c.f
 
                        YUD.setStyle('compare_fork','display','');
 
                    }
 
                };
 
                YUE.onDOMReady(checkbox_checker);
 
                checkbox_checker();
 
                YUE.on(checkboxes,'click', checkbox_checker);
 

	
 
                YUE.on('rev_range_clear','click',function(e){
kallithea/templates/changelog/changelog_summary_data.html
Show inline comments
 
@@ -69,7 +69,7 @@
 
</table>
 

	
 
<script type="text/javascript">
 
  YUE.onDOMReady(function(){
 
  $(document).ready(function(){
 
    YUE.delegate("shortlog_data","click",function(e, matchedEl, container){
 
        ypjax(e.target.href,"shortlog_data",function(){tooltip_activate();});
 
        YUE.preventDefault(e);
kallithea/templates/changeset/changeset.html
Show inline comments
 
@@ -176,7 +176,7 @@ ${self.repo_context_bar('changelog', c.c
 

	
 
    ## FORM FOR MAKING JS ACTION AS CHANGESET COMMENTS
 
    <script type="text/javascript">
 
      YUE.onDOMReady(function(){
 
      $(document).ready(function(){
 
          YUE.on(YUQ('.show-inline-comments'),'change',function(e){
 
              var show = 'none';
 
              var target = e.currentTarget;
kallithea/templates/changeset/changeset_file_comment.html
Show inline comments
 
@@ -196,7 +196,7 @@
 

	
 
<script>
 

	
 
YUE.onDOMReady(function () {
 
$(document).ready(function () {
 
   MentionsAutoComplete('text', 'mentions_container', _USERS_AC_DATA, _GROUPS_AC_DATA);
 

	
 
   YUE.on('preview-btn', 'click', function(e){
kallithea/templates/files/files.html
Show inline comments
 
@@ -197,7 +197,7 @@ var callbacks = function(State){
 
    })
 
}
 

	
 
YUE.onDOMReady(function(){
 
$(document).ready(function(){
 
    ypjax_links();
 
    var container = 'files_data';
 
    //Bind to StateChange Event
kallithea/templates/followers/followers_data.html
Show inline comments
 
@@ -17,7 +17,7 @@
 

	
 
<div class="pagination-wh pagination-left">
 
<script type="text/javascript">
 
YUE.onDOMReady(function(){
 
$(document).ready(function(){
 
    YUE.delegate("followers","click",function(e, matchedEl, container){
 
        ypjax(e.target.href,"followers",function(){
 
            show_more_event();
kallithea/templates/forks/forks_data.html
Show inline comments
 
@@ -25,7 +25,7 @@
 
    % endfor
 
  <div class="pagination-wh pagination-left">
 
  <script type="text/javascript">
 
  YUE.onDOMReady(function(){
 
  $(document).ready(function(){
 
      YUE.delegate("forks","click",function(e, matchedEl, container){
 
          ypjax(e.target.href,"forks",function(){
 
              show_more_event();
kallithea/templates/journal/journal_data.html
Show inline comments
 
@@ -39,7 +39,7 @@
 
  ${c.journal_pager.pager('$link_previous ~2~ $link_next')}
 
  </div>
 
    <script type="text/javascript">
 
    YUE.onDOMReady(function(){
 
    $(document).ready(function(){
 
        YUE.delegate("journal","click",function(e, matchedEl, container){
 
            ypjax(e.target.href,"journal",function(){
 
                show_more_event();
kallithea/templates/login.html
Show inline comments
 
@@ -80,7 +80,7 @@
 
        </div>
 
        ${h.end_form()}
 
        <script type="text/javascript">
 
        YUE.onDOMReady(function(){
 
        $(document).ready(function(){
 
            YUD.get('username').focus();
 
        })
 
        </script>
kallithea/templates/pullrequests/pullrequest.html
Show inline comments
 
@@ -210,7 +210,7 @@ ${self.repo_context_bar('showpullrequest
 
      });
 
  }
 

	
 
  YAHOO.util.Event.onDOMReady(function(){
 
  $(document).ready(function(){
 
      $("#org_repo").select2({
 
          dropdownAutoWidth: true,
 
      });
kallithea/templates/pullrequests/pullrequest_show.html
Show inline comments
 
@@ -330,7 +330,7 @@ ${self.repo_context_bar('showpullrequest
 
    %endif
 

	
 
    <script type="text/javascript">
 
      YUE.onDOMReady(function(){
 
      $(document).ready(function(){
 
          PullRequestAutoComplete('user', 'reviewers_container', _USERS_AC_DATA, _GROUPS_AC_DATA);
 

	
 
          YUE.on(YUQ('.show-inline-comments'),'change',function(e){
0 comments (0 inline, 0 general)