Ng-show dont work inside a function (angular-meteor)

Some know why the things inside of functions don’t change the “view”?
why my ng-hide/ng/show don’t work, and other things more

something.html:

  <button ng-click="something.edit()"> Editar Tarjeta </button>

something.js:

  edit () {
    this.disableImputs = false;
    console.log('inside of edit() but the view no change to "false"');
  }

thanks for you time

I don’t see an ng-show… can you share a plunker or Github repo?