Skip to content
#

navigation

Here are 2,083 public repositories matching this topic...

liaodq
liaodq commented Sep 3, 2019

doInterceptions方法里有对Warehouse.interceptors的判断

if (null != Warehouse.interceptors && Warehouse.interceptors.size() > 0){
      checkInterceptorsInitStatus();
      ......
}

Warehouse.interceptors是在InterceptorServiceImpl#init里新线程里完成添加的

         IInterceptor iInterceptor = interceptorClass.getConstructor().newInstance();
         iInterceptor.init(context);
bug
LukaszJaro
LukaszJaro commented May 14, 2019

Suggestion

WordPress core recently added this to the navwalker:
https://core.trac.wordpress.org/ticket/43290

Without adding these attributes google audit flags as a security risk, suggested change for class-wp-bootsrap-navwalker.php:

`//$atts['rel'] = ! empty( $item->xfn ) ? $item->xfn : '';

	if ( '_blank' === $item->target && empty( $item->xfn ) ) {
		$atts['rel'] = 'noopener 
SWRHARD
SWRHARD commented Apr 26, 2019

Okay, I have 2 screens: A, B;

  1. 'A' screen opening by BottomNavigationView;
  2. 'B' screen opening inside screen 'A';

My steps:

  1. I open 'A' screen by clicking at item of BottomNavigationView -> router.newRootScreen()

  2. I open 'B' screen by clicking button inside 'A' screen -> router.replaceScreen()

  3. I clicks at the same item of BottomNavigationView like at 1st step and g

thomashandorf
thomashandorf commented Sep 29, 2017

when the label in the link is not in the current frame no effect will be seen.

The frame that contains the label should be made active.

if there are more than one label with the same name we should scroll to all of them.

IMPORTANT: this issue doesn’t have high priority. If this is too complex to implement we should discuss if there is an easy solution.

kshirsagarps
kshirsagarps commented Nov 7, 2017

There are some classes we should rename to fit the 3.0 architecture and conventions.
Also, we should have sufficient java doc comments for the methods and follow common guidelines throughout the code.

Some of the findings that will help achieve above goal. It would also be good to read through the other parts of the code and have it updated.

InjectionTarget:

  • InjectionTarget can be rename
miqoo1996
miqoo1996 commented Apr 25, 2020

I have cloned this project for understanding how it works.
You have a folder with name example, there are HTML files in the files head section there is an included file "<script src="../pjax.js"></script>" This pjax.js I can't find I think possible that it doesn't exist.

When I'm opening the project/example/index.html file on browser and want to check how it work at that time I'm getting an er

flamusdiu
flamusdiu commented Nov 28, 2017

I am creating a custom TOC to fix #104 for me; however, it's not that easy.

var toc = require('markdown-toc');
var md = '# heading\n## heading 2\n### heading 3';
var result = toc(md); // links are incorrect in the toc for Angular

var correct_toc = [];
result.json.forEach(function(h) {
    // fixed h.content
    correct_toc.push(new_h);
}

var toc_md = toc.bullets(corre

Improve this page

Add a description, image, and links to the navigation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the navigation topic, visit your repo's landing page and select "manage topics."

Learn more

You can’t perform that action at this time.