The following looks at how the iPhone automatically detects Australian based phone numbers, and how you can explicitly define them. You can read more about this in Apple's iOS Developer Library.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package; | |
import flash.display.Shape; | |
import flash.display.Sprite; | |
import flash.events.MouseEvent; | |
import flash.display.StageAlign; | |
import flash.display.StageScaleMode; | |
import flash.Lib; | |
class Squares extends Sprite { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
WEB-INF | |
collections/* | |
documents/* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.DS_Store | |
WEB-INF |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
node_modules | |
*.swp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// module depencies | |
var express = require('express'); | |
var app = express.createServer(); | |
// variables | |
var port = 3000; | |
// config | |
app.set('view engine', 'mustache'); | |
app.register(".mustache", require('stache')); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
!!! 5 | |
//[if lt IE 7 ]> <html lang="en" class="no-js ie6"> <![endif] | |
//[if IE 7 ]> <html lang="en" class="no-js ie7"> <![endif] | |
//[if IE 8 ]> <html lang="en" class="no-js ie8"> <![endif] | |
//[if IE 9 ]> <html lang="en" class="no-js ie9"> <![endif] | |
//[if (gt IE 9)|!(IE)]><!--> <html lang="en" class="no-js"> <!--<![endif] | |
head | |
title title | |
body | |
h1 heading |
NewerOlder