1.1.6 • Published 10 years ago

temple-events v1.1.6

Weekly downloads
2
License
MIT
Repository
github
Last release
10 years ago

Temple Events

Adds DOM event actions to Temple's Mustache view.

Install

Download the latest version dist/ folder and use via a script tag. The variable Events will be attached to Temple.

<script type="text/javascript" src="temple.js"></script>
<script type="text/javascript" src="temple.events.js"></script>

If using Browserify or Node.js, you can install via NPM and use via require("temple-events").

$ npm install temple-events

Usage

Add to an instance of a Mustache view (Temple.Mustache) with view.use(Temple.Events). This will set up decorators that look for element attributes in the form of on-[event]. The attribute value will be parsed for action names to be fired on the view. The first argument passed will be an Action object. It's also possible to pass along other values to actions. These will be added as arguments to the triggered action.

<a href="#" on-click="myEvent, 'Hello', {{ noun }}">Click Me</a>
// a new mustache template
new Temple.Mustache(template, { noun: "World" })

// init the plugin
.use(Temple.Events)

.addAction("myEvent", function(action, str, noun) {
	action.original.preventDefault();
	alert(str + " " + noun); // "Hello World"
});

Action objects have the following properties:

  • bubbles: A boolean indicating if the action should continue bubbling through remaining actions, including parent components.
  • stopPropagation(): A method that sets bubbles to false.
  • original: The original, native DOM event
  • node: The element the action is attached too
  • context: The mustache context (Temple.Mustache.Context) the element node exists within. Sometimes the original view, sometimes not.
1.1.6

10 years ago

1.1.5

10 years ago

1.1.4

10 years ago

1.1.3

10 years ago

1.1.2

10 years ago

1.1.1

10 years ago

1.1.0

10 years ago

1.0.6

10 years ago

1.0.5

10 years ago

1.0.3

10 years ago

1.0.2

10 years ago

1.0.1

10 years ago

1.0.0

10 years ago