Files
2013-08-29 09:13:07 -05:00

13 lines
395 B
JavaScript

/* used to tie angular.js with the framework */
/* nowhere should the framework reference angular.js */
/* nowhere in angular.js should it reference the framework */
var ionic = angular.module('ionic', ['ngTouch']);
ionic.directive('panel', ['$parse', '$timeout', '$rootElement',
function($parse, $timeout, $rootElement) {
return function(scope, element, attrs) {
};
}
]);