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
namespace App.iOS | |
{ | |
public partial class PaperView : UIViewController | |
{ | |
// webView is a UIWebView | |
// toolbar is a UIToolbar | |
public override void ViewDidLoad () | |
{ | |
base.ViewDidLoad (); |
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
namespace App.iOS | |
{ | |
public partial class PaperView : UIViewController | |
{ | |
// webView is a UIWebView | |
public override void ViewDidLoad () | |
{ | |
base.ViewDidLoad (); | |
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
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Threading; | |
using WhitePaperBibleCore.Models; | |
using WhitePaperBibleCore.Services; | |
using WhitePaperBible.iOS.TableSource; | |
using MonoTouch.Foundation; |
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
using System; | |
using System.Collections.Generic; | |
using RestSharp; | |
using WhitePaperBibleCore.Models; | |
namespace WhitePaperBibleCore.Services | |
{ | |
public class PaperService | |
{ | |
public PaperService() |
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.Sprite; | |
import flash.events.MouseEvent; | |
import mx.controls.Alert; | |
import mx.core.UIComponent; | |
import mx.events.FlexEvent; |
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
ThisLife.ImportTemplate = _.template(' | |
<!-- omitting a bunch of html --> | |
<div id="no_flash_detected"> | |
<div class="top"> | |
<h3 class="jeff_script">No Flash Detected</h3> | |
</div> | |
</div> | |
<script type="text/javascript"> | |
function flashReady(){ |
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
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed'); | |
/** | |
* ExpressionEngine - by EllisLab | |
* | |
* @package ExpressionEngine | |
* @author ExpressionEngine Dev Team | |
* @copyright Copyright (c) 2003 - 2011, EllisLab, Inc. | |
* @license http://expressionengine.com/user_guide/license.html | |
* @link http://expressionengine.com |
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
<?xml version="1.0" encoding="utf-8"?> | |
<swiz:BeanProvider xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:swiz="http://swiz.swizframework.org" | |
xmlns:s="library://ns.adobe.com/flex/spark" | |
xmlns:signals="com.app.signals.*"> | |
<fx:Declarations> | |
<signals:AlertsLoadRequest /> | |
<signals:AlertsLoadSuccess /> |
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 meridiantablet.control | |
{ | |
public class AlertsController | |
{ | |
[SignalHandler( type="AlertsLoadRequest" )] | |
public function loadAlerts():void | |
{ | |
// do something | |
} |
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
<?xml version="1.0" encoding="utf-8"?> | |
<swiz:Swiz xmlns:fx="http://ns.adobe.com/mxml/2009" | |
xmlns:swiz="http://swiz.swizframework.org" | |
xmlns:config="com.app.config.*" | |
xmlns:processors="com.foomonger.swizframework.processors.*"> | |
<swiz:config> | |
<swiz:SwizConfig viewPackages="com.app.views.*" /> | |
</swiz:config> | |