Posts by Rafael Alves • 67 points
4 posts
-
0
votes0
answers70
viewsQ: Angularjs new value does not arrive in directive
I have the following directive that builds a modal. Arquivo: login.component.js (function() { 'use strict'; var app = angular.module('myapp'); app.directive('loginComponent', ['loginService',…
-
2
votes1
answer115
viewsQ: Phonegap + Cordova + sqlite
I have a problem with a stoned database file. I created a . db file with all columns and contents and compile it along with apk. The last change I made in the bank after performing a new build is…
-
3
votes1
answer117
viewsQ: Method ignoring callback function in jQuery plugin
I am developing a plugin in jQuery and the problem or difficulty is: I created the methods init, show and hide; (function( $ ) $.fn.tooltip = function(method, onClick, onBefore, onAfter) { var…
-
1
votes1
answer597
viewsQ: Angular + Requirejs
Below is the structure of the code to facilitate: main.js require.config({ baseUrl: '/', shim: { angular: { exports: "angular" }, route: { deps: ["angular"] }, app:{ deps:['route'] }, controller:{…