Get started with angular-touch CDN

MIT licensed

Angular-Touch is a library in AngularJS that enables touch events support for mobile devices.

Tags:
  • angular
  • framework
  • browser
  • touch
  • client-side

Stable version

Copied!

How to start using angular-touch CDN


<!DOCTYPE html>
<html>
<head>
  <title>Get started with angular-touch CDN - cdnhub.io</title>
  <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.7.9/angular.min.js"></script>
  <script src="https://cdn.cdnhub.io/angular-touch/1.8.3/angular-touch.min.js"></script>
  <script src="app.js"></script>
</head>
<body ng-app="myApp">
  <div ng-controller="MyController">
    <button ng-click="toggleClass()">Toggle class</button>
    <div ng-class="{highlight: highlight}">Click the button to toggle the class</div>
  </div>
</body>
</html>
Copied!
Copied!
Copied!

All versions