-
Notifications
You must be signed in to change notification settings - Fork 195
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adicionando classe de Post Status #310
Conversation
if( $( document.body ).hasClass( 'post-php' ) || $( document.body ).hasClass( 'post-new-php' ) ) { | ||
console.log('ahoy'); | ||
var select = ''; | ||
if( typeof args.select !== 'undefined' ) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-1
Aqui dá pra usar só:
if( !args.select ) {
++ |
Opa @fdaciuk, pode me explicar melhor qual o problema do alinhamento? to tentando ajudar mais no odin, porem realmente acabo me enrolando com isso.. mas tô tentando melhorar, hehe |
Capaz cara, mandou benzaço! :D |
*/ | ||
$( window ).load( function() { | ||
$( 'meta.odin-custom-status-meta' ).each( function() { | ||
var meta = $( this ); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-1
Apoveitando: por convenção, variáveis que contenham elementos do DOM, devem começar com $
. Essa variável se chamaria $meta
:)
Acho que resolvi tudo :) |
if( $( document.body ).hasClass( 'post-php' ) || $( document.body ).hasClass( 'post-new-php' ) ) { | ||
var select = ''; | ||
if( args.select ) { | ||
console.log('ahoy!'); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-1
Ficou um console.log perdido aqui ;)
@matheusgimenez, arrumando esses pontos acho que fica legal :) |
Bom, removi a manipulação do DOM num dos loops, mas no outro não vejo como.. já que preciso fazer append em cada elemento desse loop. Sobre o codigo, to tentando, hehe. Valeu pelas dicas. :) |
Sem problemas @matheusgimenez, já ficou bem melhor 👯 Tá tudo funcionando certinho né? Posso fazer o merge? |
Sim, sem problemas :) |
Adicionando classe de Post Status
Show! Valeu o/ |
Galera, criei a documentação para essa classe: https://github.com/wpbrasil/odin/wiki/Classe-Odin_Post_Status |
Boa o/ |
Boa, só não entendi por que não usou minha branch. Mas tudo bem! Rocks! Finalmente a feature agora está no odin! 😄 |
Conforme PR #266 tentei adaptar a classe ao standard do WP.
Usei meta tags para passar os argumentos para o JS, o wp_localize_script não funciona bem com várias instâncias, logo achei melhor fazer assim.
Abraços :)